Changeset 21927 for trunk/lib/unicode/string.c
- Timestamp:
- Dec 23, 2011, 7:16:58 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/unicode/string.c
r21916 r21927 12 12 #include "wine/unicode.h" 13 13 14 int strcmpiW( const WCHAR *str1, const WCHAR *str2 )14 _K32CONV int strcmpiW( const WCHAR *str1, const WCHAR *str2 ) 15 15 { 16 16 for (;;) … … 23 23 } 24 24 25 int strncmpiW( const WCHAR *str1, const WCHAR *str2, int n )25 _K32CONV int strncmpiW( const WCHAR *str1, const WCHAR *str2, int n ) 26 26 { 27 27 int ret = 0; … … 31 31 } 32 32 33 WCHAR *strstrW( const WCHAR *str, const WCHAR *sub )33 _K32CONV WCHAR *strstrW( const WCHAR *str, const WCHAR *sub ) 34 34 { 35 35 while (*str) … … 46 46 /* Copyright (C) 1991,92,94,95,96,97,98,99,2000,2001 Free Software Foundation, Inc. */ 47 47 48 long int strtolW( const WCHAR *nptr, WCHAR **endptr, int base )48 _K32CONV long int strtolW( const WCHAR *nptr, WCHAR **endptr, int base ) 49 49 { 50 50 int negative; … … 165 165 } 166 166 167 unsigned long int strtoulW( const WCHAR *nptr, WCHAR **endptr, int base )167 _K32CONV unsigned long int strtoulW( const WCHAR *nptr, WCHAR **endptr, int base ) 168 168 { 169 169 int negative; … … 276 276 } 277 277 278 int vsnprintfW(WCHAR *str, unsigned int len, const WCHAR *format, va_list valist)278 _K32CONV int vsnprintfW(WCHAR *str, unsigned int len, const WCHAR *format, va_list valist) 279 279 { 280 280 unsigned int written = 0; … … 395 395 396 396 397 int snprintfW(WCHAR *str, unsigned int len, const WCHAR *format, ...)397 _K32CONV int snprintfW(WCHAR *str, unsigned int len, const WCHAR *format, ...) 398 398 { 399 399 int retval; … … 405 405 } 406 406 407 int sprintfW( WCHAR *str, const WCHAR *format, ...)407 _K32CONV int sprintfW( WCHAR *str, const WCHAR *format, ...) 408 408 { 409 409 int retval;
Note:
See TracChangeset
for help on using the changeset viewer.