Changeset 21927 for trunk/lib/unicode/utf8.c
- Timestamp:
- Dec 23, 2011, 7:16:58 PM (14 years ago)
- File:
-
- 1 edited
-
trunk/lib/unicode/utf8.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/unicode/utf8.c
r21916 r21927 47 47 /* wide char to UTF-8 string conversion */ 48 48 /* return -1 on dst buffer overflow */ 49 int utf8_wcstombs( const WCHAR *src, int srclen, char *dst, int dstlen )49 _K32CONV int utf8_wcstombs( const WCHAR *src, int srclen, char *dst, int dstlen ) 50 50 { 51 51 int ret = srclen; … … 127 127 /* UTF-8 to wide char string conversion */ 128 128 /* return -1 on dst buffer overflow, -2 on invalid input char */ 129 int utf8_mbstowcs( int flags, const char *src, int srclen, WCHAR *dst, int dstlen )129 _K32CONV int utf8_mbstowcs( int flags, const char *src, int srclen, WCHAR *dst, int dstlen ) 130 130 { 131 131 int len, count;
Note:
See TracChangeset
for help on using the changeset viewer.
