msvcrt: Implement _itoa_s.
[wine] / dlls / msvcrt / tests / string.c
1 /*
2  * Unit test suite for string functions.
3  *
4  * Copyright 2004 Uwe Bonnes
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  */
20
21 #include "wine/test.h"
22 #include "winbase.h"
23 #include <string.h>
24 #include <mbstring.h>
25 #include <stdlib.h>
26 #include <stdio.h>
27 #include <mbctype.h>
28 #include <locale.h>
29 #include <errno.h>
30 #include <limits.h>
31
32 static char *buf_to_string(const unsigned char *bin, int len, int nr)
33 {
34     static char buf[2][1024];
35     char *w = buf[nr];
36     int i;
37
38     for (i = 0; i < len; i++)
39     {
40         sprintf(w, "%02x ", (unsigned char)bin[i]);
41         w += strlen(w);
42     }
43     return buf[nr];
44 }
45
46 #define expect_eq(expr, value, type, format) { type ret = (expr); ok((value) == ret, #expr " expected " format " got " format "\n", value, ret); }
47 #define expect_bin(buf, value, len) { ok(memcmp((buf), value, len) == 0, "Binary buffer mismatch - expected %s, got %s\n", buf_to_string((unsigned char *)value, len, 1), buf_to_string((buf), len, 0)); }
48
49 static void* (__cdecl *pmemcpy)(void *, const void *, size_t n);
50 static int* (__cdecl *pmemcmp)(void *, const void *, size_t n);
51 static int (__cdecl *pstrcpy_s)(char *dst, size_t len, const char *src);
52 static int (__cdecl *pstrcat_s)(char *dst, size_t len, const char *src);
53 static int (__cdecl *p_mbsnbcpy_s)(unsigned char * dst, size_t size, const unsigned char * src, size_t count);
54 static int (__cdecl *p_wcscpy_s)(wchar_t *wcDest, size_t size, const wchar_t *wcSrc);
55 static int (__cdecl *p_wcsupr_s)(wchar_t *str, size_t size);
56 static size_t (__cdecl *p_strnlen)(const char *, size_t);
57 static __int64 (__cdecl *p_strtoi64)(const char *, char **, int);
58 static unsigned __int64 (__cdecl *p_strtoui64)(const char *, char **, int);
59 static int (__cdecl *pwcstombs_s)(size_t*,char*,size_t,const wchar_t*,size_t);
60 static int (__cdecl *pmbstowcs_s)(size_t*,wchar_t*,size_t,const char*,size_t);
61 static errno_t (__cdecl *p_gcvt_s)(char*,size_t,double,int);
62 static errno_t (__cdecl *p_itoa_s)(int,char*,size_t,int);
63 static int *p__mb_cur_max;
64 static unsigned char *p_mbctype;
65
66 #define SETNOFAIL(x,y) x = (void*)GetProcAddress(hMsvcrt,y)
67 #define SET(x,y) SETNOFAIL(x,y); ok(x != NULL, "Export '%s' not found\n", y)
68
69 static HMODULE hMsvcrt;
70
71 static void test_swab( void ) {
72     char original[]  = "BADCFEHGJILKNMPORQTSVUXWZY@#";
73     char expected1[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ@#";
74     char expected2[] = "ABCDEFGHIJKLMNOPQRSTUVWX$";
75     char expected3[] = "$";
76     
77     char from[30];
78     char to[30];
79     
80     int testsize;
81     
82     /* Test 1 - normal even case */                               
83     memset(to,'$', sizeof(to));
84     memset(from,'@', sizeof(from));
85     testsize = 26;
86     memcpy(from, original, testsize);
87     _swab( from, to, testsize );
88     ok(memcmp(to,expected1,testsize) == 0, "Testing even size %d returned '%*.*s'\n", testsize, testsize, testsize, to);
89
90     /* Test 2 - uneven case  */                               
91     memset(to,'$', sizeof(to));
92     memset(from,'@', sizeof(from));
93     testsize = 25;
94     memcpy(from, original, testsize);
95     _swab( from, to, testsize );
96     ok(memcmp(to,expected2,testsize) == 0, "Testing odd size %d returned '%*.*s'\n", testsize, testsize, testsize, to);
97
98     /* Test 3 - from = to */                               
99     memset(to,'$', sizeof(to));
100     memset(from,'@', sizeof(from));
101     testsize = 26;
102     memcpy(to, original, testsize);
103     _swab( to, to, testsize );
104     ok(memcmp(to,expected1,testsize) == 0, "Testing overlapped size %d returned '%*.*s'\n", testsize, testsize, testsize, to);
105
106     /* Test 4 - 1 bytes */                               
107     memset(to,'$', sizeof(to));
108     memset(from,'@', sizeof(from));
109     testsize = 1;
110     memcpy(from, original, testsize);
111     _swab( from, to, testsize );
112     ok(memcmp(to,expected3,testsize) == 0, "Testing small size %d returned '%*.*s'\n", testsize, testsize, testsize, to);
113 }
114
115 #if 0      /* use this to generate more tests */
116
117 static void test_codepage(int cp)
118 {
119     int i;
120     int prev;
121     int count = 1;
122
123     ok(_setmbcp(cp) == 0, "Couldn't set mbcp\n");
124
125     prev = p_mbctype[0];
126     printf("static int result_cp_%d_mbctype[] = { ", cp);
127     for (i = 1; i < 257; i++)
128     {
129         if (p_mbctype[i] != prev)
130         {
131             printf("0x%x,%d, ", prev, count);
132             prev = p_mbctype[i];
133             count = 1;
134         }
135         else
136             count++;
137     }
138     printf("0x%x,%d };\n", prev, count);
139 }
140
141 #else
142
143 /* RLE-encoded mbctype tables for given codepages */
144 static int result_cp_932_mbctype[] = { 0x0,65, 0x8,1, 0x18,26, 0x8,6, 0x28,26, 0x8,4,
145   0x0,1, 0x8,1, 0xc,31, 0x8,1, 0xa,5, 0x9,58, 0xc,29, 0,3 };
146 static int result_cp_936_mbctype[] = { 0x0,65, 0x8,1, 0x18,26, 0x8,6, 0x28,26, 0x8,6,
147   0xc,126, 0,1 };
148 static int result_cp_949_mbctype[] = { 0x0,66, 0x18,26, 0x8,6, 0x28,26, 0x8,6, 0xc,126,
149   0,1 };
150 static int result_cp_950_mbctype[] = { 0x0,65, 0x8,1, 0x18,26, 0x8,6, 0x28,26, 0x8,4,
151   0x0,2, 0x4,32, 0xc,94, 0,1 };
152
153 static void test_cp_table(int cp, int *result)
154 {
155     int i;
156     int count = 0;
157     int curr = 0;
158     _setmbcp(cp);
159     for (i = 0; i < 256; i++)
160     {
161         if (count == 0)
162         {
163             curr = result[0];
164             count = result[1];
165             result += 2;
166         }
167         ok(p_mbctype[i] == curr, "CP%d: Mismatch in ctype for character %d - %d instead of %d\n", cp, i-1, p_mbctype[i], curr);
168         count--;
169     }
170 }
171
172 #define test_codepage(num) test_cp_table(num, result_cp_##num##_mbctype);
173
174 #endif
175
176 static void test_mbcp(void)
177 {
178     int mb_orig_max = *p__mb_cur_max;
179     int curr_mbcp = _getmbcp();
180     unsigned char *mbstring = (unsigned char *)"\xb0\xb1\xb2 \xb3\xb4 \xb5"; /* incorrect string */
181     unsigned char *mbstring2 = (unsigned char *)"\xb0\xb1\xb2\xb3Q\xb4\xb5"; /* correct string */
182     unsigned char *mbsonlylead = (unsigned char *)"\xb0\0\xb1\xb2 \xb3";
183     unsigned char buf[16];
184     int step;
185
186     /* _mbtype tests */
187
188     /* An SBCS codepage test. The ctype of characters on e.g. CP1252 or CP1250 differs slightly
189      * between versions of Windows. Also Windows 9x seems to ignore the codepage and always uses
190      * CP1252 (or the ACP?) so we test only a few ASCII characters */
191     _setmbcp(1252);
192     expect_eq(p_mbctype[10], 0, char, "%x");
193     expect_eq(p_mbctype[50], 0, char, "%x");
194     expect_eq(p_mbctype[66], _SBUP, char, "%x");
195     expect_eq(p_mbctype[100], _SBLOW, char, "%x");
196     expect_eq(p_mbctype[128], 0, char, "%x");
197     _setmbcp(1250);
198     expect_eq(p_mbctype[10], 0, char, "%x");
199     expect_eq(p_mbctype[50], 0, char, "%x");
200     expect_eq(p_mbctype[66], _SBUP, char, "%x");
201     expect_eq(p_mbctype[100], _SBLOW, char, "%x");
202     expect_eq(p_mbctype[128], 0, char, "%x");
203
204     /* double byte code pages */
205     test_codepage(932);
206     test_codepage(936);
207     test_codepage(949);
208     test_codepage(950);
209
210     _setmbcp(936);
211     ok(*p__mb_cur_max == mb_orig_max, "__mb_cur_max shouldn't be updated (is %d != %d)\n", *p__mb_cur_max, mb_orig_max);
212     ok(_ismbblead('\354'), "\354 should be a lead byte\n");
213     ok(_ismbblead(' ') == FALSE, "' ' should not be a lead byte\n");
214     ok(_ismbblead(0x1234b0), "0x1234b0 should not be a lead byte\n");
215     ok(_ismbblead(0x123420) == FALSE, "0x123420 should not be a lead byte\n");
216     ok(_ismbbtrail('\xb0'), "\xa0 should be a trail byte\n");
217     ok(_ismbbtrail(' ') == FALSE, "' ' should not be a trail byte\n");
218
219     /* _ismbslead */
220     expect_eq(_ismbslead(mbstring, &mbstring[0]), -1, int, "%d");
221     expect_eq(_ismbslead(mbstring, &mbstring[1]), FALSE, int, "%d");
222     expect_eq(_ismbslead(mbstring, &mbstring[2]), -1, int, "%d");
223     expect_eq(_ismbslead(mbstring, &mbstring[3]), FALSE, int, "%d");
224     expect_eq(_ismbslead(mbstring, &mbstring[4]), -1, int, "%d");
225     expect_eq(_ismbslead(mbstring, &mbstring[5]), FALSE, int, "%d");
226     expect_eq(_ismbslead(mbstring, &mbstring[6]), FALSE, int, "%d");
227     expect_eq(_ismbslead(mbstring, &mbstring[7]), -1, int, "%d");
228     expect_eq(_ismbslead(mbstring, &mbstring[8]), FALSE, int, "%d");
229
230     expect_eq(_ismbslead(mbsonlylead, &mbsonlylead[0]), -1, int, "%d");
231     expect_eq(_ismbslead(mbsonlylead, &mbsonlylead[1]), FALSE, int, "%d");
232     expect_eq(_ismbslead(mbsonlylead, &mbsonlylead[2]), FALSE, int, "%d");
233     expect_eq(_ismbslead(mbsonlylead, &mbsonlylead[5]), FALSE, int, "%d");
234
235     /* _ismbstrail */
236     expect_eq(_ismbstrail(mbstring, &mbstring[0]), FALSE, int, "%d");
237     expect_eq(_ismbstrail(mbstring, &mbstring[1]), -1, int, "%d");
238     expect_eq(_ismbstrail(mbstring, &mbstring[2]), FALSE, int, "%d");
239     expect_eq(_ismbstrail(mbstring, &mbstring[3]), -1, int, "%d");
240     expect_eq(_ismbstrail(mbstring, &mbstring[4]), FALSE, int, "%d");
241     expect_eq(_ismbstrail(mbstring, &mbstring[5]), -1, int, "%d");
242     expect_eq(_ismbstrail(mbstring, &mbstring[6]), FALSE, int, "%d");
243     expect_eq(_ismbstrail(mbstring, &mbstring[7]), FALSE, int, "%d");
244     expect_eq(_ismbstrail(mbstring, &mbstring[8]), -1, int, "%d");
245
246     expect_eq(_ismbstrail(mbsonlylead, &mbsonlylead[0]), FALSE, int, "%d");
247     expect_eq(_ismbstrail(mbsonlylead, &mbsonlylead[1]), -1, int, "%d");
248     expect_eq(_ismbstrail(mbsonlylead, &mbsonlylead[2]), FALSE, int, "%d");
249     expect_eq(_ismbstrail(mbsonlylead, &mbsonlylead[3]), FALSE, int, "%d");
250     expect_eq(_ismbstrail(mbsonlylead, &mbsonlylead[4]), FALSE, int, "%d");
251     expect_eq(_ismbstrail(mbsonlylead, &mbsonlylead[5]), FALSE, int, "%d");
252
253     /* _mbsbtype */
254     expect_eq(_mbsbtype(mbstring, 0), _MBC_LEAD, int, "%d");
255     expect_eq(_mbsbtype(mbstring, 1), _MBC_TRAIL, int, "%d");
256     expect_eq(_mbsbtype(mbstring, 2), _MBC_LEAD, int, "%d");
257     expect_eq(_mbsbtype(mbstring, 3), _MBC_ILLEGAL, int, "%d");
258     expect_eq(_mbsbtype(mbstring, 4), _MBC_LEAD, int, "%d");
259     expect_eq(_mbsbtype(mbstring, 5), _MBC_TRAIL, int, "%d");
260     expect_eq(_mbsbtype(mbstring, 6), _MBC_SINGLE, int, "%d");
261     expect_eq(_mbsbtype(mbstring, 7), _MBC_LEAD, int, "%d");
262     expect_eq(_mbsbtype(mbstring, 8), _MBC_ILLEGAL, int, "%d");
263
264     expect_eq(_mbsbtype(mbsonlylead, 0), _MBC_LEAD, int, "%d");
265     expect_eq(_mbsbtype(mbsonlylead, 1), _MBC_ILLEGAL, int, "%d");
266     expect_eq(_mbsbtype(mbsonlylead, 2), _MBC_ILLEGAL, int, "%d");
267     expect_eq(_mbsbtype(mbsonlylead, 3), _MBC_ILLEGAL, int, "%d");
268     expect_eq(_mbsbtype(mbsonlylead, 4), _MBC_ILLEGAL, int, "%d");
269     expect_eq(_mbsbtype(mbsonlylead, 5), _MBC_ILLEGAL, int, "%d");
270
271     /* _mbsnextc */
272     expect_eq(_mbsnextc(mbstring), 0xb0b1, int, "%x");
273     expect_eq(_mbsnextc(&mbstring[2]), 0xb220, int, "%x");  /* lead + invalid tail */
274     expect_eq(_mbsnextc(&mbstring[3]), 0x20, int, "%x");    /* single char */
275
276     /* _mbclen/_mbslen */
277     expect_eq(_mbclen(mbstring), 2, int, "%d");
278     expect_eq(_mbclen(&mbstring[2]), 2, int, "%d");
279     expect_eq(_mbclen(&mbstring[3]), 1, int, "%d");
280     expect_eq(_mbslen(mbstring2), 4, int, "%d");
281     expect_eq(_mbslen(mbsonlylead), 0, int, "%d");          /* lead + NUL not counted as character */
282     expect_eq(_mbslen(mbstring), 4, int, "%d");             /* lead + invalid trail counted */
283
284     /* _mbccpy/_mbsncpy */
285     memset(buf, 0xff, sizeof(buf));
286     _mbccpy(buf, mbstring);
287     expect_bin(buf, "\xb0\xb1\xff", 3);
288
289     memset(buf, 0xff, sizeof(buf));
290     _mbsncpy(buf, mbstring, 1);
291     expect_bin(buf, "\xb0\xb1\xff", 3);
292     memset(buf, 0xff, sizeof(buf));
293     _mbsncpy(buf, mbstring, 2);
294     expect_bin(buf, "\xb0\xb1\xb2 \xff", 5);
295     memset(buf, 0xff, sizeof(buf));
296     _mbsncpy(buf, mbstring, 3);
297     expect_bin(buf, "\xb0\xb1\xb2 \xb3\xb4\xff", 7);
298     memset(buf, 0xff, sizeof(buf));
299     _mbsncpy(buf, mbstring, 4);
300     expect_bin(buf, "\xb0\xb1\xb2 \xb3\xb4 \xff", 8);
301     memset(buf, 0xff, sizeof(buf));
302     _mbsncpy(buf, mbstring, 5);
303     expect_bin(buf, "\xb0\xb1\xb2 \xb3\xb4 \0\0\xff", 10);
304     memset(buf, 0xff, sizeof(buf));
305     _mbsncpy(buf, mbsonlylead, 6);
306     expect_bin(buf, "\0\0\0\0\0\0\0\xff", 8);
307
308     memset(buf, 0xff, sizeof(buf));
309     _mbsnbcpy(buf, mbstring2, 2);
310     expect_bin(buf, "\xb0\xb1\xff", 3);
311     _mbsnbcpy(buf, mbstring2, 3);
312     expect_bin(buf, "\xb0\xb1\0\xff", 4);
313     _mbsnbcpy(buf, mbstring2, 4);
314     expect_bin(buf, "\xb0\xb1\xb2\xb3\xff", 5);
315     memset(buf, 0xff, sizeof(buf));
316     _mbsnbcpy(buf, mbsonlylead, 5);
317     expect_bin(buf, "\0\0\0\0\0\xff", 6);
318
319     /* _mbsinc/mbsdec */
320     step = _mbsinc(mbstring) - mbstring;
321     ok(step == 2, "_mbsinc adds %d (exp. 2)\n", step);
322     step = _mbsinc(&mbstring[2]) - &mbstring[2];  /* lead + invalid tail */
323     ok(step == 2, "_mbsinc adds %d (exp. 2)\n", step);
324
325     step = _mbsninc(mbsonlylead, 1) - mbsonlylead;
326     ok(step == 0, "_mbsninc adds %d (exp. 0)\n", step);
327     step = _mbsninc(mbsonlylead, 2) - mbsonlylead;  /* lead + NUL byte + lead + char */
328     ok(step == 0, "_mbsninc adds %d (exp. 0)\n", step);
329     step = _mbsninc(mbstring2, 0) - mbstring2;
330     ok(step == 0, "_mbsninc adds %d (exp. 2)\n", step);
331     step = _mbsninc(mbstring2, 1) - mbstring2;
332     ok(step == 2, "_mbsninc adds %d (exp. 2)\n", step);
333     step = _mbsninc(mbstring2, 2) - mbstring2;
334     ok(step == 4, "_mbsninc adds %d (exp. 4)\n", step);
335     step = _mbsninc(mbstring2, 3) - mbstring2;
336     ok(step == 5, "_mbsninc adds %d (exp. 5)\n", step);
337     step = _mbsninc(mbstring2, 4) - mbstring2;
338     ok(step == 7, "_mbsninc adds %d (exp. 7)\n", step);
339     step = _mbsninc(mbstring2, 5) - mbstring2;
340     ok(step == 7, "_mbsninc adds %d (exp. 7)\n", step);
341     step = _mbsninc(mbstring2, 17) - mbstring2;
342     ok(step == 7, "_mbsninc adds %d (exp. 7)\n", step);
343
344     /* functions that depend on locale codepage, not mbcp.
345      * we hope the current locale to be SBCS because setlocale(LC_ALL, ".1252") seems not to work yet
346      * (as of Wine 0.9.43)
347      */
348     if (*p__mb_cur_max == 1)
349     {
350         expect_eq(mblen((char *)mbstring, 3), 1, int, "%x");
351         expect_eq(_mbstrlen((char *)mbstring2), 7, int, "%d");
352     }
353     else
354         skip("Current locale has double-byte charset - could leave to false positives\n");
355
356     _setmbcp(1361);
357     expect_eq(_ismbblead(0x80), 0, int, "%d");
358     todo_wine {
359       expect_eq(_ismbblead(0x81), 1, int, "%d");
360       expect_eq(_ismbblead(0x83), 1, int, "%d");
361     }
362     expect_eq(_ismbblead(0x84), 1, int, "%d");
363     expect_eq(_ismbblead(0xd3), 1, int, "%d");
364     expect_eq(_ismbblead(0xd7), 0, int, "%d");
365     todo_wine {
366       expect_eq(_ismbblead(0xd8), 1, int, "%d");
367     }
368     expect_eq(_ismbblead(0xd9), 1, int, "%d");
369
370     expect_eq(_ismbbtrail(0x30), 0, int, "%d");
371     expect_eq(_ismbbtrail(0x31), 1, int, "%d");
372     expect_eq(_ismbbtrail(0x7e), 1, int, "%d");
373     expect_eq(_ismbbtrail(0x7f), 0, int, "%d");
374     expect_eq(_ismbbtrail(0x80), 0, int, "%d");
375     expect_eq(_ismbbtrail(0x81), 1, int, "%d");
376     expect_eq(_ismbbtrail(0xfe), 1, int, "%d");
377     expect_eq(_ismbbtrail(0xff), 0, int, "%d");
378
379     _setmbcp(curr_mbcp);
380 }
381
382 static void test_mbsspn( void)
383 {
384     unsigned char str1[]="cabernet";
385     unsigned char str2[]="shiraz";
386     unsigned char set[]="abc";
387     unsigned char empty[]="";
388     int ret;
389     ret=_mbsspn( str1, set);
390     ok( ret==3, "_mbsspn returns %d should be 3\n", ret);
391     ret=_mbsspn( str2, set);
392     ok( ret==0, "_mbsspn returns %d should be 0\n", ret);
393     ret=_mbsspn( str1, empty);
394     ok( ret==0, "_mbsspn returns %d should be 0\n", ret);
395 }
396
397 static void test_mbsspnp( void)
398 {
399     unsigned char str1[]="cabernet";
400     unsigned char str2[]="shiraz";
401     unsigned char set[]="abc";
402     unsigned char empty[]="";
403     unsigned char full[]="abcenrt";
404     unsigned char* ret;
405     ret=_mbsspnp( str1, set);
406     ok( ret[0]=='e', "_mbsspnp returns %c should be e\n", ret[0]);
407     ret=_mbsspnp( str2, set);
408     ok( ret[0]=='s', "_mbsspnp returns %c should be s\n", ret[0]);
409     ret=_mbsspnp( str1, empty);
410     ok( ret[0]=='c', "_mbsspnp returns %c should be c\n", ret[0]);
411     ret=_mbsspnp( str1, full);
412     ok( ret==NULL, "_mbsspnp returns %p should be NULL\n", ret);
413 }
414
415 static void test_strdup(void)
416 {
417    char *str;
418    str = _strdup( 0 );
419    ok( str == 0, "strdup returns %s should be 0\n", str);
420    free( str );
421 }
422
423 static void test_strcpy_s(void)
424 {
425     char dest[8];
426     const char *small = "small";
427     const char *big = "atoolongstringforthislittledestination";
428     int ret;
429
430     if(!pstrcpy_s)
431     {
432         skip("strcpy_s not found\n");
433         return;
434     }
435
436     memset(dest, 'X', sizeof(dest));
437     ret = pstrcpy_s(dest, sizeof(dest), small);
438     ok(ret == 0, "Copying a string into a big enough destination returned %d, expected 0\n", ret);
439     ok(dest[0] == 's' && dest[1] == 'm' && dest[2] == 'a' && dest[3] == 'l' &&
440        dest[4] == 'l' && dest[5] == '\0'&& dest[6] == 'X' && dest[7] == 'X',
441        "Unexpected return data from strcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
442        dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
443
444     memset(dest, 'X', sizeof(dest));
445     ret = pstrcpy_s(dest, 0, big);
446     ok(ret == EINVAL, "Copying into a destination of size 0 returned %d, expected EINVAL\n", ret);
447     ok(dest[0] == 'X' && dest[1] == 'X' && dest[2] == 'X' && dest[3] == 'X' &&
448        dest[4] == 'X' && dest[5] == 'X' && dest[6] == 'X' && dest[7] == 'X',
449        "Unexpected return data from strcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
450        dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
451     ret = pstrcpy_s(dest, 0, NULL);
452     ok(ret == EINVAL, "Copying into a destination of size 0 returned %d, expected EINVAL\n", ret);
453     ok(dest[0] == 'X' && dest[1] == 'X' && dest[2] == 'X' && dest[3] == 'X' &&
454        dest[4] == 'X' && dest[5] == 'X' && dest[6] == 'X' && dest[7] == 'X',
455        "Unexpected return data from strcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
456        dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
457
458     memset(dest, 'X', sizeof(dest));
459     ret = pstrcpy_s(dest, sizeof(dest), big);
460     ok(ret == ERANGE, "Copying a big string in a small location returned %d, expected ERANGE\n", ret);
461     ok(dest[0] == '\0'&& dest[1] == 't' && dest[2] == 'o' && dest[3] == 'o' &&
462        dest[4] == 'l' && dest[5] == 'o' && dest[6] == 'n' && dest[7] == 'g',
463        "Unexpected return data from strcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
464        dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
465
466     memset(dest, 'X', sizeof(dest));
467     ret = pstrcpy_s(dest, sizeof(dest), NULL);
468     ok(ret == EINVAL, "Copying from a NULL source string returned %d, expected EINVAL\n", ret);
469     ok(dest[0] == '\0'&& dest[1] == 'X' && dest[2] == 'X' && dest[3] == 'X' &&
470        dest[4] == 'X' && dest[5] == 'X' && dest[6] == 'X' && dest[7] == 'X',
471        "Unexpected return data from strcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
472        dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
473
474     ret = pstrcpy_s(NULL, sizeof(dest), small);
475     ok(ret == EINVAL, "Copying a big string a NULL dest returned %d, expected EINVAL\n", ret);
476 }
477
478 static void test_strcat_s(void)
479 {
480     char dest[8];
481     const char *small = "sma";
482     int ret;
483
484     if(!pstrcat_s)
485     {
486         skip("strcat_s not found\n");
487         return;
488     }
489
490     memset(dest, 'X', sizeof(dest));
491     dest[0] = '\0';
492     ret = pstrcat_s(dest, sizeof(dest), small);
493     ok(ret == 0, "strcat_s: Copying a string into a big enough destination returned %d, expected 0\n", ret);
494     ok(dest[0] == 's' && dest[1] == 'm' && dest[2] == 'a' && dest[3] == '\0'&&
495        dest[4] == 'X' && dest[5] == 'X' && dest[6] == 'X' && dest[7] == 'X',
496        "Unexpected return data from strcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
497        dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
498     ret = pstrcat_s(dest, sizeof(dest), small);
499     ok(ret == 0, "strcat_s: Attaching a string to a big enough destination returned %d, expected 0\n", ret);
500     ok(dest[0] == 's' && dest[1] == 'm' && dest[2] == 'a' && dest[3] == 's' &&
501        dest[4] == 'm' && dest[5] == 'a' && dest[6] == '\0'&& dest[7] == 'X',
502        "Unexpected return data from strcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
503        dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
504
505     ret = pstrcat_s(dest, sizeof(dest), small);
506     ok(ret == ERANGE, "strcat_s: Attaching a string to a filled up destination returned %d, expected ERANGE\n", ret);
507     ok(dest[0] == '\0'&& dest[1] == 'm' && dest[2] == 'a' && dest[3] == 's' &&
508        dest[4] == 'm' && dest[5] == 'a' && dest[6] == 's' && dest[7] == 'm',
509        "Unexpected return data from strcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
510        dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
511
512     memset(dest, 'X', sizeof(dest));
513     dest[0] = 'a';
514     dest[1] = '\0';
515
516     ret = pstrcat_s(dest, 0, small);
517     ok(ret == EINVAL, "strcat_s: Source len = 0 returned %d, expected EINVAL\n", ret);
518     ok(dest[0] == 'a' && dest[1] == '\0'&& dest[2] == 'X' && dest[3] == 'X' &&
519        dest[4] == 'X' && dest[5] == 'X' && dest[6] == 'X' && dest[7] == 'X',
520        "Unexpected return data from strcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
521        dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
522
523     ret = pstrcat_s(dest, 0, NULL);
524     ok(ret == EINVAL, "strcat_s: len = 0 and src = NULL returned %d, expected EINVAL\n", ret);
525     ok(dest[0] == 'a' && dest[1] == '\0'&& dest[2] == 'X' && dest[3] == 'X' &&
526        dest[4] == 'X' && dest[5] == 'X' && dest[6] == 'X' && dest[7] == 'X',
527        "Unexpected return data from strcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
528        dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
529
530     ret = pstrcat_s(dest, sizeof(dest), NULL);
531     ok(ret == EINVAL, "strcat_s:  Sourcing from NULL returned %d, expected EINVAL\n", ret);
532     ok(dest[0] == '\0'&& dest[1] == '\0'&& dest[2] == 'X' && dest[3] == 'X' &&
533        dest[4] == 'X' && dest[5] == 'X' && dest[6] == 'X' && dest[7] == 'X',
534        "Unexpected return data from strcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
535        dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
536
537     ret = pstrcat_s(NULL, sizeof(dest), small);
538     ok(ret == EINVAL, "strcat_s: Writing to a NULL string returned %d, expected EINVAL\n", ret);
539 }
540
541 static void test__mbsnbcpy_s(void)
542 {
543     unsigned char dest[8];
544     const unsigned char big[] = "atoolongstringforthislittledestination";
545     const unsigned char small[] = "small";
546     int ret;
547
548     if(!p_mbsnbcpy_s)
549     {
550         skip("_mbsnbcpy_s not found\n");
551         return;
552     }
553
554     memset(dest, 'X', sizeof(dest));
555     ret = p_mbsnbcpy_s(dest, sizeof(dest), small, sizeof(small));
556     ok(ret == 0, "_mbsnbcpy_s: Copying a string into a big enough destination returned %d, expected 0\n", ret);
557     ok(dest[0] == 's' && dest[1] == 'm' && dest[2] == 'a' && dest[3] == 'l' &&
558        dest[4] == 'l' && dest[5] == '\0'&& dest[6] == 'X' && dest[7] == 'X',
559        "Unexpected return data from _mbsnbcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
560        dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
561
562     /* WTF? */
563     memset(dest, 'X', sizeof(dest));
564     ret = p_mbsnbcpy_s(dest, sizeof(dest) - 2, big, sizeof(small));
565     ok(ret == ERANGE, "_mbsnbcpy_s: Copying a too long string returned %d, expected ERANGE\n", ret);
566     ok(dest[0] == '\0'&& dest[1] == 't' && dest[2] == 'o' && dest[3] == 'o' &&
567        dest[4] == 'l' && dest[5] == 'o' && dest[6] == 'X' && dest[7] == 'X',
568        "Unexpected return data from _mbsnbcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
569        dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
570
571     memset(dest, 'X', sizeof(dest));
572     ret = p_mbsnbcpy_s(dest, sizeof(dest) - 2, big, 4);
573     ok(ret == 0, "_mbsnbcpy_s: Copying a too long string with a count cap returned %d, expected 0\n", ret);
574     ok(dest[0] == 'a' && dest[1] == 't' && dest[2] == 'o' && dest[3] == 'o' &&
575        dest[4] == '\0'&& dest[5] == 'X' && dest[6] == 'X' && dest[7] == 'X',
576        "Unexpected return data from _mbsnbcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
577        dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
578
579     memset(dest, 'X', sizeof(dest));
580     ret = p_mbsnbcpy_s(dest, sizeof(dest) - 2, small, sizeof(small) + 10);
581     ok(ret == 0, "_mbsnbcpy_s: Copying more data than the source string len returned %d, expected 0\n", ret);
582     ok(dest[0] == 's' && dest[1] == 'm' && dest[2] == 'a' && dest[3] == 'l' &&
583        dest[4] == 'l' && dest[5] == '\0'&& dest[6] == 'X' && dest[7] == 'X',
584        "Unexpected return data from _mbsnbcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
585        dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
586 }
587
588 static void test_wcscpy_s(void)
589 {
590     static const WCHAR szLongText[] = { 'T','h','i','s','A','L','o','n','g','s','t','r','i','n','g',0 };
591     static WCHAR szDest[18];
592     static WCHAR szDestShort[8];
593     int ret;
594
595     if(!p_wcscpy_s)
596     {
597         skip("wcscpy_s not found\n");
598         return;
599     }
600
601     /* Test NULL Dest */
602     ret = p_wcscpy_s(NULL, 18, szLongText);
603     ok(ret == EINVAL, "p_wcscpy_s expect EINVAL got %d\n", ret);
604
605     /* Test NULL Source */
606     szDest[0] = 'A';
607     ret = p_wcscpy_s(szDest, 18, NULL);
608     ok(ret == EINVAL, "expected EINVAL got %d\n", ret);
609     ok(szDest[0] == 0, "szDest[0] not 0\n");
610
611     /* Test invalid size */
612     szDest[0] = 'A';
613     ret = p_wcscpy_s(szDest, 0, szLongText);
614     /* Later versions changed the return value for this case to EINVAL,
615      * and don't modify the result if the dest size is 0.
616      */
617     ok(ret == ERANGE || ret == EINVAL, "expected ERANGE/EINVAL got %d\n", ret);
618     ok(szDest[0] == 0 || ret == EINVAL, "szDest[0] not 0\n");
619
620     /* Copy same buffer size */
621     ret = p_wcscpy_s(szDest, 18, szLongText);
622     ok(ret == 0, "expected 0 got %d\n", ret);
623     ok(lstrcmpW(szDest, szLongText) == 0, "szDest != szLongText\n");
624
625     /* Copy smaller buffer size */
626     szDest[0] = 'A';
627     ret = p_wcscpy_s(szDestShort, 8, szLongText);
628     ok(ret == ERANGE || ret == EINVAL, "expected ERANGE/EINVAL got %d\n", ret);
629     ok(szDestShort[0] == 0, "szDestShort[0] not 0\n");
630 }
631
632 static void test__wcsupr_s(void)
633 {
634     static const WCHAR mixedString[] = {'M', 'i', 'X', 'e', 'D', 'l', 'o', 'w',
635                                         'e', 'r', 'U', 'P', 'P', 'E', 'R', 0};
636     static const WCHAR expectedString[] = {'M', 'I', 'X', 'E', 'D', 'L', 'O',
637                                            'W', 'E', 'R', 'U', 'P', 'P', 'E',
638                                            'R', 0};
639     WCHAR testBuffer[2*sizeof(mixedString)/sizeof(WCHAR)];
640     int ret;
641
642     if (!p_wcsupr_s)
643     {
644         win_skip("_wcsupr_s not found\n");
645         return;
646     }
647
648     /* Test NULL input string and invalid size. */
649     errno = EBADF;
650     ret = p_wcsupr_s(NULL, 0);
651     ok(ret == EINVAL, "Expected _wcsupr_s to fail with EINVAL, got %d\n", ret);
652     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
653
654     /* Test NULL input string and valid size. */
655     errno = EBADF;
656     ret = p_wcsupr_s(NULL, sizeof(testBuffer)/sizeof(WCHAR));
657     ok(ret == EINVAL, "Expected _wcsupr_s to fail with EINVAL, got %d\n", ret);
658     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
659
660     /* Test empty string with zero size. */
661     errno = EBADF;
662     testBuffer[0] = '\0';
663     ret = p_wcsupr_s(testBuffer, 0);
664     ok(ret == EINVAL, "Expected _wcsupr_s to fail with EINVAL, got %d\n", ret);
665     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
666     ok(testBuffer[0] == '\0', "Expected the buffer to be unchanged\n");
667
668     /* Test empty string with size of one. */
669     testBuffer[0] = '\0';
670     ret = p_wcsupr_s(testBuffer, 1);
671     ok(ret == 0, "Expected _wcsupr_s to succeed, got %d\n", ret);
672     ok(testBuffer[0] == '\0', "Expected the buffer to be unchanged\n");
673
674     /* Test one-byte buffer with zero size. */
675     errno = EBADF;
676     testBuffer[0] = 'x';
677     ret = p_wcsupr_s(testBuffer, 0);
678     ok(ret == EINVAL, "Expected _wcsupr_s to fail with EINVAL, got %d\n", ret);
679     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
680     ok(testBuffer[0] == '\0', "Expected the first buffer character to be null\n");
681
682     /* Test one-byte buffer with size of one. */
683     errno = EBADF;
684     testBuffer[0] = 'x';
685     ret = p_wcsupr_s(testBuffer, 1);
686     ok(ret == EINVAL, "Expected _wcsupr_s to fail with EINVAL, got %d\n", ret);
687     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
688     ok(testBuffer[0] == '\0', "Expected the first buffer character to be null\n");
689
690     /* Test invalid size. */
691     wcscpy(testBuffer, mixedString);
692     errno = EBADF;
693     ret = p_wcsupr_s(testBuffer, 0);
694     ok(ret == EINVAL, "Expected _wcsupr_s to fail with EINVAL, got %d\n", ret);
695     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
696     ok(testBuffer[0] == '\0', "Expected the first buffer character to be null\n");
697
698     /* Test normal string uppercasing. */
699     wcscpy(testBuffer, mixedString);
700     ret = p_wcsupr_s(testBuffer, sizeof(mixedString)/sizeof(WCHAR));
701     ok(ret == 0, "Expected _wcsupr_s to succeed, got %d\n", ret);
702     ok(!wcscmp(testBuffer, expectedString), "Expected the string to be fully upper-case\n");
703
704     /* Test uppercasing with a shorter buffer size count. */
705     wcscpy(testBuffer, mixedString);
706     errno = EBADF;
707     ret = p_wcsupr_s(testBuffer, sizeof(mixedString)/sizeof(WCHAR) - 1);
708     ok(ret == EINVAL, "Expected _wcsupr_s to fail with EINVAL, got %d\n", ret);
709     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
710     ok(testBuffer[0] == '\0', "Expected the first buffer character to be null\n");
711
712     /* Test uppercasing with a longer buffer size count. */
713     wcscpy(testBuffer, mixedString);
714     ret = p_wcsupr_s(testBuffer, sizeof(testBuffer)/sizeof(WCHAR));
715     ok(ret == 0, "Expected _wcsupr_s to succeed, got %d\n", ret);
716     ok(!wcscmp(testBuffer, expectedString), "Expected the string to be fully upper-case\n");
717 }
718
719 static void test_mbcjisjms(void)
720 {
721     /* List of value-pairs to test. The test assumes the last pair to be {0, ..} */
722     unsigned int jisjms[][2] = { {0x2020, 0}, {0x2021, 0}, {0x2120, 0}, {0x2121, 0x8140},
723                                  {0x7f7f, 0}, {0x7f7e, 0}, {0x7e7f, 0}, {0x7e7e, 0xeffc},
724                                  {0x2121FFFF, 0}, {0x2223, 0x81a1}, {0x237e, 0x829e}, {0, 0}};
725     unsigned int ret, exp, i;
726
727     i = 0;
728     do
729     {
730         ret = _mbcjistojms(jisjms[i][0]);
731
732         if(_getmbcp() == 932)   /* Japanese codepage? */
733             exp = jisjms[i][1];
734         else
735             exp = jisjms[i][0]; /* If not, no conversion */
736
737         ok(ret == exp, "Expected 0x%x, got 0x%x\n", exp, ret);
738     } while(jisjms[i++][0] != 0);
739 }
740
741 static void test_mbctombb(void)
742 {
743     static const unsigned int mbcmbb_932[][2] = {
744         {0x829e, 0x829e}, {0x829f, 0xa7}, {0x82f1, 0xdd}, {0x82f2, 0x82f2},
745         {0x833f, 0x833f}, {0x8340, 0xa7}, {0x837e, 0xd0}, {0x837f, 0x837f},
746         {0x8380, 0xd1}, {0x8396, 0xb9}, {0x8397, 0x8397}, {0x813f, 0x813f},
747         {0x8140, 0x20}, {0x814c, 0x814c}, {0x814f, 0x5e}, {0x8197, 0x40},
748         {0x8198, 0x8198}, {0x8258, 0x39}, {0x8259, 0x8259}, {0x825f, 0x825f},
749         {0x8260, 0x41}, {0x82f1, 0xdd}, {0x82f2, 0x82f2}, {0,0}};
750     unsigned int exp, ret, i;
751     unsigned int prev_cp = _getmbcp();
752
753     _setmbcp(932);
754     for (i = 0; mbcmbb_932[i][0] != 0; i++)
755     {
756         ret = _mbctombb(mbcmbb_932[i][0]);
757         exp = mbcmbb_932[i][1];
758         ok(ret == exp, "Expected 0x%x, got 0x%x\n", exp, ret);
759     }
760     _setmbcp(prev_cp);
761 }
762
763 static void test_ismbclegal(void) {
764     unsigned int prev_cp = _getmbcp();
765     int ret, exp, err;
766     unsigned int i;
767
768     _setmbcp(932); /* Japanese */
769     err = 0;
770     for(i = 0; i < 0x10000; i++) {
771         ret = _ismbclegal(i);
772         exp = ((HIBYTE(i) >= 0x81 && HIBYTE(i) <= 0x9F) ||
773                (HIBYTE(i) >= 0xE0 && HIBYTE(i) <= 0xFC)) &&
774               ((LOBYTE(i) >= 0x40 && LOBYTE(i) <= 0x7E) ||
775                (LOBYTE(i) >= 0x80 && LOBYTE(i) <= 0xFC));
776         if(ret != exp) {
777             err = 1;
778             break;
779         }
780     }
781     ok(!err, "_ismbclegal (932) : Expected 0x%x, got 0x%x (0x%x)\n", exp, ret, i);
782     _setmbcp(936); /* Chinese (GBK) */
783     err = 0;
784     for(i = 0; i < 0x10000; i++) {
785         ret = _ismbclegal(i);
786         exp = HIBYTE(i) >= 0x81 && HIBYTE(i) <= 0xFE &&
787               LOBYTE(i) >= 0x40 && LOBYTE(i) <= 0xFE;
788         if(ret != exp) {
789             err = 1;
790             break;
791         }
792     }
793     ok(!err, "_ismbclegal (936) : Expected 0x%x, got 0x%x (0x%x)\n", exp, ret, i);
794     _setmbcp(949); /* Korean */
795     err = 0;
796     for(i = 0; i < 0x10000; i++) {
797         ret = _ismbclegal(i);
798         exp = HIBYTE(i) >= 0x81 && HIBYTE(i) <= 0xFE &&
799               LOBYTE(i) >= 0x41 && LOBYTE(i) <= 0xFE;
800         if(ret != exp) {
801             err = 1;
802             break;
803         }
804     }
805     ok(!err, "_ismbclegal (949) : Expected 0x%x, got 0x%x (0x%x)\n", exp, ret, i);
806     _setmbcp(950); /* Chinese (Big5) */
807     err = 0;
808     for(i = 0; i < 0x10000; i++) {
809         ret = _ismbclegal(i);
810         exp = HIBYTE(i) >= 0x81 && HIBYTE(i) <= 0xFE &&
811             ((LOBYTE(i) >= 0x40 && LOBYTE(i) <= 0x7E) ||
812              (LOBYTE(i) >= 0xA1 && LOBYTE(i) <= 0xFE));
813         if(ret != exp) {
814             err = 1;
815             break;
816         }
817     }
818     ok(!err, "_ismbclegal (950) : Expected 0x%x, got 0x%x (0x%x)\n", exp, ret, i);
819     _setmbcp(1361); /* Korean (Johab) */
820     err = 0;
821     for(i = 0; i < 0x10000; i++) {
822         ret = _ismbclegal(i);
823         exp = ((HIBYTE(i) >= 0x81 && HIBYTE(i) <= 0xD3) ||
824                (HIBYTE(i) >= 0xD8 && HIBYTE(i) <= 0xF9)) &&
825               ((LOBYTE(i) >= 0x31 && LOBYTE(i) <= 0x7E) ||
826                (LOBYTE(i) >= 0x81 && LOBYTE(i) <= 0xFE)) &&
827                 HIBYTE(i) != 0xDF;
828         if(ret != exp) {
829             err = 1;
830             break;
831         }
832     }
833     todo_wine ok(!err, "_ismbclegal (1361) : Expected 0x%x, got 0x%x (0x%x)\n", exp, ret, i);
834
835     _setmbcp(prev_cp);
836 }
837
838 static const struct {
839     const char* string;
840     const char* delimiter;
841     int exp_offsetret1; /* returned offset from string after first call to strtok()
842                            -1 means NULL  */
843     int exp_offsetret2; /* returned offset from string after second call to strtok()
844                            -1 means NULL  */
845     int exp_offsetret3; /* returned offset from string after third call to strtok()
846                            -1 means NULL  */
847 } testcases_strtok[] = {
848     { "red cabernet", " ", 0, 4, -1 },
849     { "sparkling white riesling", " ", 0, 10, 16 },
850     { " pale cream sherry", "e ", 1, 6, 9 },
851     /* end mark */
852     { 0}
853 };
854
855 static void test_strtok(void)
856 {
857     int i;
858     char *strret;
859     char teststr[100];
860     for( i = 0; testcases_strtok[i].string; i++){
861         strcpy( teststr, testcases_strtok[i].string);
862         strret = strtok( teststr, testcases_strtok[i].delimiter);
863         ok( (int)(strret - teststr) ==  testcases_strtok[i].exp_offsetret1 ||
864                 (!strret && testcases_strtok[i].exp_offsetret1 == -1),
865                 "string (%p) \'%s\' return %p\n",
866                 teststr, testcases_strtok[i].string, strret);
867         if( !strret) continue;
868         strret = strtok( NULL, testcases_strtok[i].delimiter);
869         ok( (int)(strret - teststr) ==  testcases_strtok[i].exp_offsetret2 ||
870                 (!strret && testcases_strtok[i].exp_offsetret2 == -1),
871                 "second call string (%p) \'%s\' return %p\n",
872                 teststr, testcases_strtok[i].string, strret);
873         if( !strret) continue;
874         strret = strtok( NULL, testcases_strtok[i].delimiter);
875         ok( (int)(strret - teststr) ==  testcases_strtok[i].exp_offsetret3 ||
876                 (!strret && testcases_strtok[i].exp_offsetret3 == -1),
877                 "third call string (%p) \'%s\' return %p\n",
878                 teststr, testcases_strtok[i].string, strret);
879     }
880 }
881
882 static void test_strtol(void)
883 {
884     char* e;
885     LONG l;
886     ULONG ul;
887
888     /* errno is only set in case of error, so reset errno to EBADF to check for errno modification */
889     /* errno is modified on W2K8+ */
890     errno = EBADF;
891     l = strtol("-1234", &e, 0);
892     ok(l==-1234, "wrong value %d\n", l);
893     ok(errno == EBADF || broken(errno == 0), "wrong errno %d\n", errno);
894     errno = EBADF;
895     ul = strtoul("1234", &e, 0);
896     ok(ul==1234, "wrong value %u\n", ul);
897     ok(errno == EBADF || broken(errno == 0), "wrong errno %d\n", errno);
898
899     errno = EBADF;
900     l = strtol("2147483647L", &e, 0);
901     ok(l==2147483647, "wrong value %d\n", l);
902     ok(errno == EBADF || broken(errno == 0), "wrong errno %d\n", errno);
903     errno = EBADF;
904     l = strtol("-2147483648L", &e, 0);
905     ok(l==-2147483647L - 1, "wrong value %d\n", l);
906     ok(errno == EBADF || broken(errno == 0), "wrong errno %d\n", errno);
907     errno = EBADF;
908     ul = strtoul("4294967295UL", &e, 0);
909     ok(ul==4294967295ul, "wrong value %u\n", ul);
910     ok(errno == EBADF || broken(errno == 0), "wrong errno %d\n", errno);
911
912     errno = 0;
913     l = strtol("9223372036854775807L", &e, 0);
914     ok(l==2147483647, "wrong value %d\n", l);
915     ok(errno == ERANGE, "wrong errno %d\n", errno);
916     errno = 0;
917     ul = strtoul("9223372036854775807L", &e, 0);
918     ok(ul==4294967295ul, "wrong value %u\n", ul);
919     ok(errno == ERANGE, "wrong errno %d\n", errno);
920 }
921
922 static void test_strnlen(void)
923 {
924     static const char str[] = "string";
925     size_t res;
926
927     if(!p_strnlen) {
928         win_skip("strnlen not found\n");
929         return;
930     }
931
932     res = p_strnlen(str, 20);
933     ok(res == 6, "Returned length = %d\n", (int)res);
934
935     res = p_strnlen(str, 3);
936     ok(res == 3, "Returned length = %d\n", (int)res);
937
938     res = p_strnlen(NULL, 0);
939     ok(res == 0, "Returned length = %d\n", (int)res);
940 }
941
942 static void test__strtoi64(void)
943 {
944     static const char no1[] = "31923";
945     static const char no2[] = "-213312";
946     static const char no3[] = "12aa";
947     static const char no4[] = "abc12";
948     static const char overflow[] = "99999999999999999999";
949     static const char neg_overflow[] = "-99999999999999999999";
950     static const char hex[] = "0x123";
951     static const char oct[] = "000123";
952     static const char blanks[] = "        12 212.31";
953
954     __int64 res;
955     unsigned __int64 ures;
956     char *endpos;
957
958     if(!p_strtoi64 || !p_strtoui64) {
959         win_skip("_strtoi64 or _strtoui64 not found\n");
960         return;
961     }
962
963     errno = 0xdeadbeef;
964     res = p_strtoi64(no1, NULL, 10);
965     ok(res == 31923, "res != 31923\n");
966     res = p_strtoi64(no2, NULL, 10);
967     ok(res == -213312, "res != -213312\n");
968     res = p_strtoi64(no3, NULL, 10);
969     ok(res == 12, "res != 12\n");
970     res = p_strtoi64(no4, &endpos, 10);
971     ok(res == 0, "res != 0\n");
972     ok(endpos == no4, "Scanning was not stopped on first character\n");
973     res = p_strtoi64(hex, &endpos, 10);
974     ok(res == 0, "res != 0\n");
975     ok(endpos == hex+1, "Incorrect endpos (%p-%p)\n", hex, endpos);
976     res = p_strtoi64(oct, &endpos, 10);
977     ok(res == 123, "res != 123\n");
978     ok(endpos == oct+strlen(oct), "Incorrect endpos (%p-%p)\n", oct, endpos);
979     res = p_strtoi64(blanks, &endpos, 10);
980     ok(res == 12, "res != 12\n");
981     ok(endpos == blanks+10, "Incorrect endpos (%p-%p)\n", blanks, endpos);
982     ok(errno == 0xdeadbeef, "errno = %x\n", errno);
983
984     errno = 0xdeadbeef;
985     res = p_strtoi64(overflow, &endpos, 10);
986     ok(res == _I64_MAX, "res != _I64_MAX\n");
987     ok(endpos == overflow+strlen(overflow), "Incorrect endpos (%p-%p)\n", overflow, endpos);
988     ok(errno == ERANGE, "errno = %x\n", errno);
989
990     errno = 0xdeadbeef;
991     res = p_strtoi64(neg_overflow, &endpos, 10);
992     ok(res == _I64_MIN, "res != _I64_MIN\n");
993     ok(endpos == neg_overflow+strlen(neg_overflow), "Incorrect endpos (%p-%p)\n", neg_overflow, endpos);
994     ok(errno == ERANGE, "errno = %x\n", errno);
995
996     errno = 0xdeadbeef;
997     res = p_strtoi64(no1, &endpos, 16);
998     ok(res == 203043, "res != 203043\n");
999     ok(endpos == no1+strlen(no1), "Incorrect endpos (%p-%p)\n", no1, endpos);
1000     res = p_strtoi64(no2, &endpos, 16);
1001     ok(res == -2175762, "res != -2175762\n");
1002     ok(endpos == no2+strlen(no2), "Incorrect endpos (%p-%p)\n", no2, endpos);
1003     res = p_strtoi64(no3, &endpos, 16);
1004     ok(res == 4778, "res != 4778\n");
1005     ok(endpos == no3+strlen(no3), "Incorrect endpos (%p-%p)\n", no3, endpos);
1006     res = p_strtoi64(no4, &endpos, 16);
1007     ok(res == 703506, "res != 703506\n");
1008     ok(endpos == no4+strlen(no4), "Incorrect endpos (%p-%p)\n", no4, endpos);
1009     res = p_strtoi64(hex, &endpos, 16);
1010     ok(res == 291, "res != 291\n");
1011     ok(endpos == hex+strlen(hex), "Incorrect endpos (%p-%p)\n", hex, endpos);
1012     res = p_strtoi64(oct, &endpos, 16);
1013     ok(res == 291, "res != 291\n");
1014     ok(endpos == oct+strlen(oct), "Incorrect endpos (%p-%p)\n", oct, endpos);
1015     res = p_strtoi64(blanks, &endpos, 16);
1016     ok(res == 18, "res != 18\n");
1017     ok(endpos == blanks+10, "Incorrect endpos (%p-%p)\n", blanks, endpos);
1018     ok(errno == 0xdeadbeef, "errno = %x\n", errno);
1019
1020     errno = 0xdeadbeef;
1021     res = p_strtoi64(hex, &endpos, 36);
1022     ok(res == 1541019, "res != 1541019\n");
1023     ok(endpos == hex+strlen(hex), "Incorrect endpos (%p-%p)\n", hex, endpos);
1024     ok(errno == 0xdeadbeef, "errno = %x\n", errno);
1025
1026     errno = 0xdeadbeef;
1027     res = p_strtoi64(no1, &endpos, 0);
1028     ok(res == 31923, "res != 31923\n");
1029     ok(endpos == no1+strlen(no1), "Incorrect endpos (%p-%p)\n", no1, endpos);
1030     res = p_strtoi64(no2, &endpos, 0);
1031     ok(res == -213312, "res != -213312\n");
1032     ok(endpos == no2+strlen(no2), "Incorrect endpos (%p-%p)\n", no2, endpos);
1033     res = p_strtoi64(no3, &endpos, 10);
1034     ok(res == 12, "res != 12\n");
1035     ok(endpos == no3+2, "Incorrect endpos (%p-%p)\n", no3, endpos);
1036     res = p_strtoi64(no4, &endpos, 10);
1037     ok(res == 0, "res != 0\n");
1038     ok(endpos == no4, "Incorrect endpos (%p-%p)\n", no4, endpos);
1039     res = p_strtoi64(hex, &endpos, 10);
1040     ok(res == 0, "res != 0\n");
1041     ok(endpos == hex+1, "Incorrect endpos (%p-%p)\n", hex, endpos);
1042     res = p_strtoi64(oct, &endpos, 10);
1043     ok(res == 123, "res != 123\n");
1044     ok(endpos == oct+strlen(oct), "Incorrect endpos (%p-%p)\n", oct, endpos);
1045     res = p_strtoi64(blanks, &endpos, 10);
1046     ok(res == 12, "res != 12\n");
1047     ok(endpos == blanks+10, "Incorrect endpos (%p-%p)\n", blanks, endpos);
1048     ok(errno == 0xdeadbeef, "errno = %x\n", errno);
1049
1050     errno = 0xdeadbeef;
1051     ures = p_strtoui64(no1, &endpos, 0);
1052     ok(ures == 31923, "ures != 31923\n");
1053     ok(endpos == no1+strlen(no1), "Incorrect endpos (%p-%p)\n", no1, endpos);
1054     ures = p_strtoui64(no2, &endpos, 0);
1055     ok(ures == -213312, "ures != -213312\n");
1056     ok(endpos == no2+strlen(no2), "Incorrect endpos (%p-%p)\n", no2, endpos);
1057     ures = p_strtoui64(no3, &endpos, 10);
1058     ok(ures == 12, "ures != 12\n");
1059     ok(endpos == no3+2, "Incorrect endpos (%p-%p)\n", no3, endpos);
1060     ures = p_strtoui64(no4, &endpos, 10);
1061     ok(ures == 0, "ures != 0\n");
1062     ok(endpos == no4, "Incorrect endpos (%p-%p)\n", no4, endpos);
1063     ures = p_strtoui64(hex, &endpos, 10);
1064     ok(ures == 0, "ures != 0\n");
1065     ok(endpos == hex+1, "Incorrect endpos (%p-%p)\n", hex, endpos);
1066     ures = p_strtoui64(oct, &endpos, 10);
1067     ok(ures == 123, "ures != 123\n");
1068     ok(endpos == oct+strlen(oct), "Incorrect endpos (%p-%p)\n", oct, endpos);
1069     ures = p_strtoui64(blanks, &endpos, 10);
1070     ok(ures == 12, "ures != 12\n");
1071     ok(endpos == blanks+10, "Incorrect endpos (%p-%p)\n", blanks, endpos);
1072     ok(errno == 0xdeadbeef, "errno = %x\n", errno);
1073
1074     errno = 0xdeadbeef;
1075     ures = p_strtoui64(overflow, &endpos, 10);
1076     ok(ures == _UI64_MAX, "ures != _UI64_MAX\n");
1077     ok(endpos == overflow+strlen(overflow), "Incorrect endpos (%p-%p)\n", overflow, endpos);
1078     ok(errno == ERANGE, "errno = %x\n", errno);
1079
1080     errno = 0xdeadbeef;
1081     ures = p_strtoui64(neg_overflow, &endpos, 10);
1082     ok(ures == 1, "ures != 1\n");
1083     ok(endpos == neg_overflow+strlen(neg_overflow), "Incorrect endpos (%p-%p)\n", neg_overflow, endpos);
1084     ok(errno == ERANGE, "errno = %x\n", errno);
1085 }
1086
1087 static inline BOOL almost_equal(double d1, double d2) {
1088     if(d1-d2>-1e-30 && d1-d2<1e-30)
1089         return TRUE;
1090     return FALSE;
1091 }
1092
1093 static void test__strtod(void)
1094 {
1095     const char double1[] = "12.1";
1096     const char double2[] = "-13.721";
1097     const char double3[] = "INF";
1098     const char double4[] = ".21e12";
1099     const char double5[] = "214353e-3";
1100     const char overflow[] = "1d9999999999999999999";
1101     const char white_chars[] = "  d10";
1102
1103     char *end;
1104     double d;
1105
1106     d = strtod(double1, &end);
1107     ok(almost_equal(d, 12.1), "d = %lf\n", d);
1108     ok(end == double1+4, "incorrect end (%d)\n", (int)(end-double1));
1109
1110     d = strtod(double2, &end);
1111     ok(almost_equal(d, -13.721), "d = %lf\n", d);
1112     ok(end == double2+7, "incorrect end (%d)\n", (int)(end-double2));
1113
1114     d = strtod(double3, &end);
1115     ok(almost_equal(d, 0), "d = %lf\n", d);
1116     ok(end == double3, "incorrect end (%d)\n", (int)(end-double3));
1117
1118     d = strtod(double4, &end);
1119     ok(almost_equal(d, 210000000000.0), "d = %lf\n", d);
1120     ok(end == double4+6, "incorrect end (%d)\n", (int)(end-double4));
1121
1122     d = strtod(double5, &end);
1123     ok(almost_equal(d, 214.353), "d = %lf\n", d);
1124     ok(end == double5+9, "incorrect end (%d)\n", (int)(end-double5));
1125
1126     d = strtod("12.1d2", NULL);
1127     ok(almost_equal(d, 12.1e2), "d = %lf\n", d);
1128
1129     d = strtod(white_chars, &end);
1130     ok(almost_equal(d, 0), "d = %lf\n", d);
1131     ok(end == white_chars, "incorrect end (%d)\n", (int)(end-white_chars));
1132
1133     /* Set locale with non '.' decimal point (',') */
1134     if(!setlocale(LC_ALL, "Polish")) {
1135         win_skip("system with limited locales\n");
1136         return;
1137     }
1138
1139     d = strtod("12.1", NULL);
1140     ok(almost_equal(d, 12.0), "d = %lf\n", d);
1141
1142     d = strtod("12,1", NULL);
1143     ok(almost_equal(d, 12.1), "d = %lf\n", d);
1144
1145     setlocale(LC_ALL, "C");
1146
1147     /* Precision tests */
1148     d = strtod("0.1", NULL);
1149     ok(almost_equal(d, 0.1), "d = %lf\n", d);
1150     d = strtod("-0.1", NULL);
1151     ok(almost_equal(d, -0.1), "d = %lf\n", d);
1152     d = strtod("0.1281832188491894198128921", NULL);
1153     ok(almost_equal(d, 0.1281832188491894198128921), "d = %lf\n", d);
1154     d = strtod("0.82181281288121", NULL);
1155     ok(almost_equal(d, 0.82181281288121), "d = %lf\n", d);
1156     d = strtod("21921922352523587651128218821", NULL);
1157     ok(almost_equal(d, 21921922352523587651128218821.0), "d = %lf\n", d);
1158     d = strtod("0.1d238", NULL);
1159     ok(almost_equal(d, 0.1e238L), "d = %lf\n", d);
1160     d = strtod("0.1D-4736", NULL);
1161     ok(almost_equal(d, 0.1e-4736L), "d = %lf\n", d);
1162
1163     errno = 0xdeadbeef;
1164     d = strtod(overflow, &end);
1165     ok(errno == ERANGE, "errno = %x\n", errno);
1166     ok(end == overflow+21, "incorrect end (%d)\n", (int)(end-overflow));
1167
1168     errno = 0xdeadbeef;
1169     strtod("-1d309", NULL);
1170     ok(errno == ERANGE, "errno = %x\n", errno);
1171 }
1172
1173 static void test_mbstowcs(void)
1174 {
1175     static const wchar_t wSimple[] = { 't','e','x','t',0 };
1176     static const wchar_t wHiragana[] = { 0x3042,0x3043,0 };
1177     static const char mSimple[] = "text";
1178     static const char mHiragana[] = { 0x82,0xa0,0x82,0xa1,0 };
1179
1180     wchar_t wOut[6];
1181     char mOut[6];
1182     size_t ret;
1183     int err;
1184
1185     wOut[4] = '!'; wOut[5] = '\0';
1186     mOut[4] = '!'; mOut[5] = '\0';
1187
1188     ret = mbstowcs(NULL, mSimple, 0);
1189     ok(ret == 4, "mbstowcs did not return 4\n");
1190
1191     ret = mbstowcs(wOut, mSimple, 4);
1192     ok(ret == 4, "mbstowcs did not return 4\n");
1193     ok(!memcmp(wOut, wSimple, 4*sizeof(wchar_t)), "wOut = %s\n", wine_dbgstr_w(wOut));
1194     ok(wOut[4] == '!', "wOut[4] != \'!\'\n");
1195
1196     ret = wcstombs(NULL, wSimple, 0);
1197     ok(ret == 4, "wcstombs did not return 4\n");
1198
1199     ret = wcstombs(mOut, wSimple, 6);
1200     ok(ret == 4, "wcstombs did not return 4\n");
1201     ok(!memcmp(mOut, mSimple, 5*sizeof(char)), "mOut = %s\n", mOut);
1202
1203     ret = wcstombs(mOut, wSimple, 2);
1204     ok(ret == 2, "wcstombs did not return 2\n");
1205     ok(!memcmp(mOut, mSimple, 5*sizeof(char)), "mOut = %s\n", mOut);
1206
1207     if(!setlocale(LC_ALL, "Japanese_Japan.932")) {
1208         win_skip("Japanese_Japan.932 locale not available\n");
1209         return;
1210     }
1211
1212     ret = mbstowcs(wOut, mHiragana, 6);
1213     ok(ret == 2, "mbstowcs did not return 2\n");
1214     ok(!memcmp(wOut, wHiragana, sizeof(wHiragana)), "wOut = %s\n", wine_dbgstr_w(wOut));
1215
1216     ret = wcstombs(mOut, wHiragana, 6);
1217     ok(ret == 4, "wcstombs did not return 4\n");
1218     ok(!memcmp(mOut, mHiragana, sizeof(mHiragana)), "mOut = %s\n", mOut);
1219
1220     if(!pmbstowcs_s || !pwcstombs_s) {
1221         win_skip("mbstowcs_s or wcstombs_s not available\n");
1222         return;
1223     }
1224
1225     err = pmbstowcs_s(&ret, wOut, 6, mSimple, _TRUNCATE);
1226     ok(err == 0, "err = %d\n", err);
1227     ok(ret == 5, "ret = %d\n", (int)ret);
1228     ok(!memcmp(wOut, wSimple, sizeof(wSimple)), "wOut = %s\n", wine_dbgstr_w(wOut));
1229
1230     err = pmbstowcs_s(&ret, wOut, 6, mHiragana, _TRUNCATE);
1231     ok(err == 0, "err = %d\n", err);
1232     ok(ret == 3, "ret = %d\n", (int)ret);
1233     ok(!memcmp(wOut, wHiragana, sizeof(wHiragana)), "wOut = %s\n", wine_dbgstr_w(wOut));
1234
1235     err = pwcstombs_s(&ret, mOut, 6, wSimple, _TRUNCATE);
1236     ok(err == 0, "err = %d\n", err);
1237     ok(ret == 5, "ret = %d\n", (int)ret);
1238     ok(!memcmp(mOut, mSimple, sizeof(mSimple)), "mOut = %s\n", mOut);
1239
1240     err = pwcstombs_s(&ret, mOut, 6, wHiragana, _TRUNCATE);
1241     ok(err == 0, "err = %d\n", err);
1242     ok(ret == 5, "ret = %d\n", (int)ret);
1243     ok(!memcmp(mOut, mHiragana, sizeof(mHiragana)), "mOut = %s\n", mOut);
1244 }
1245
1246 static void test_gcvt(void)
1247 {
1248     char buf[1024], *res;
1249     errno_t err;
1250
1251     if(!p_gcvt_s) {
1252         win_skip("Skipping _gcvt tests\n");
1253         return;
1254     }
1255
1256     errno = 0;
1257     res = _gcvt(1.2, -1, buf);
1258     ok(res == NULL, "res != NULL\n");
1259     ok(errno == ERANGE, "errno = %d\n", errno);
1260
1261     errno = 0;
1262     res = _gcvt(1.2, 5, NULL);
1263     ok(res == NULL, "res != NULL\n");
1264     ok(errno == EINVAL, "errno = %d\n", errno);
1265
1266     res = gcvt(1.2, 5, buf);
1267     ok(res == buf, "res != buf\n");
1268     ok(!strcmp(buf, "1.2"), "buf = %s\n", buf);
1269
1270     buf[0] = 'x';
1271     err = p_gcvt_s(buf, 5, 1.2, 10);
1272     ok(err == ERANGE, "err = %d\n", err);
1273     ok(buf[0] == '\0', "buf[0] = %c\n", buf[0]);
1274
1275     buf[0] = 'x';
1276     err = p_gcvt_s(buf, 4, 123456, 2);
1277     ok(err == ERANGE, "err = %d\n", err);
1278     ok(buf[0] == '\0', "buf[0] = %c\n", buf[0]);
1279 }
1280
1281 static void test__itoa_s(void)
1282 {
1283     errno_t ret;
1284     char buffer[33];
1285
1286     if (!p_itoa_s)
1287     {
1288         win_skip("Skipping _itoa_s tests\n");
1289         return;
1290     }
1291
1292     errno = EBADF;
1293     ret = p_itoa_s(0, NULL, 0, 0);
1294     ok(ret == EINVAL, "Expected _itoa_s to return EINVAL, got %d\n", ret);
1295     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
1296
1297     memset(buffer, 'X', sizeof(buffer));
1298     errno = EBADF;
1299     ret = p_itoa_s(0, buffer, 0, 0);
1300     ok(ret == EINVAL, "Expected _itoa_s to return EINVAL, got %d\n", ret);
1301     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
1302     ok(buffer[0] == 'X', "Expected the output buffer to be untouched\n");
1303
1304     memset(buffer, 'X', sizeof(buffer));
1305     errno = EBADF;
1306     ret = p_itoa_s(0, buffer, sizeof(buffer), 0);
1307     ok(ret == EINVAL, "Expected _itoa_s to return EINVAL, got %d\n", ret);
1308     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
1309     ok(buffer[0] == '\0', "Expected the output buffer to be null terminated\n");
1310
1311     memset(buffer, 'X', sizeof(buffer));
1312     errno = EBADF;
1313     ret = p_itoa_s(0, buffer, sizeof(buffer), 64);
1314     ok(ret == EINVAL, "Expected _itoa_s to return EINVAL, got %d\n", ret);
1315     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
1316     ok(buffer[0] == '\0', "Expected the output buffer to be null terminated\n");
1317
1318     memset(buffer, 'X', sizeof(buffer));
1319     errno = EBADF;
1320     ret = p_itoa_s(12345678, buffer, 4, 10);
1321     ok(ret == ERANGE, "Expected _itoa_s to return ERANGE, got %d\n", ret);
1322     ok(errno == ERANGE, "Expected errno to be ERANGE, got %d\n", errno);
1323     ok(!memcmp(buffer, "\000765", 4),
1324        "Expected the output buffer to be null terminated with truncated output\n");
1325
1326     memset(buffer, 'X', sizeof(buffer));
1327     errno = EBADF;
1328     ret = p_itoa_s(12345678, buffer, 8, 10);
1329     ok(ret == ERANGE, "Expected _itoa_s to return ERANGE, got %d\n", ret);
1330     ok(errno == ERANGE, "Expected errno to be ERANGE, got %d\n", errno);
1331     ok(!memcmp(buffer, "\0007654321", 8),
1332        "Expected the output buffer to be null terminated with truncated output\n");
1333
1334     memset(buffer, 'X', sizeof(buffer));
1335     errno = EBADF;
1336     ret = p_itoa_s(-12345678, buffer, 9, 10);
1337     ok(ret == ERANGE, "Expected _itoa_s to return ERANGE, got %d\n", ret);
1338     ok(errno == ERANGE, "Expected errno to be ERANGE, got %d\n", errno);
1339     ok(!memcmp(buffer, "\00087654321", 9),
1340        "Expected the output buffer to be null terminated with truncated output\n");
1341
1342     ret = p_itoa_s(12345678, buffer, 9, 10);
1343     ok(ret == 0, "Expected _itoa_s to return 0, got %d\n", ret);
1344     ok(!strcmp(buffer, "12345678"),
1345        "Expected output buffer string to be \"12345678\", got \"%s\"\n",
1346        buffer);
1347
1348     ret = p_itoa_s(43690, buffer, sizeof(buffer), 2);
1349     ok(ret == 0, "Expected _itoa_s to return 0, got %d\n", ret);
1350     ok(!strcmp(buffer, "1010101010101010"),
1351        "Expected output buffer string to be \"1010101010101010\", got \"%s\"\n",
1352        buffer);
1353
1354     ret = p_itoa_s(1092009, buffer, sizeof(buffer), 36);
1355     ok(ret == 0, "Expected _itoa_s to return 0, got %d\n", ret);
1356     ok(!strcmp(buffer, "nell"),
1357        "Expected output buffer string to be \"nell\", got \"%s\"\n",
1358        buffer);
1359
1360     ret = p_itoa_s(5704, buffer, sizeof(buffer), 18);
1361     ok(ret == 0, "Expected _itoa_s to return 0, got %d\n", ret);
1362     ok(!strcmp(buffer, "hag"),
1363        "Expected output buffer string to be \"hag\", got \"%s\"\n",
1364        buffer);
1365
1366     ret = p_itoa_s(-12345678, buffer, sizeof(buffer), 10);
1367     ok(ret == 0, "Expected _itoa_s to return 0, got %d\n", ret);
1368     ok(!strcmp(buffer, "-12345678"),
1369        "Expected output buffer string to be \"-12345678\", got \"%s\"\n",
1370        buffer);
1371 }
1372
1373 START_TEST(string)
1374 {
1375     char mem[100];
1376     static const char xilstring[]="c:/xilinx";
1377     int nLen;
1378
1379     hMsvcrt = GetModuleHandleA("msvcrt.dll");
1380     if (!hMsvcrt)
1381         hMsvcrt = GetModuleHandleA("msvcrtd.dll");
1382     ok(hMsvcrt != 0, "GetModuleHandleA failed\n");
1383     SET(pmemcpy,"memcpy");
1384     SET(pmemcmp,"memcmp");
1385     SET(p_mbctype,"_mbctype");
1386     SET(p__mb_cur_max,"__mb_cur_max");
1387     pstrcpy_s = (void *)GetProcAddress( hMsvcrt,"strcpy_s" );
1388     pstrcat_s = (void *)GetProcAddress( hMsvcrt,"strcat_s" );
1389     p_mbsnbcpy_s = (void *)GetProcAddress( hMsvcrt,"_mbsnbcpy_s" );
1390     p_wcscpy_s = (void *)GetProcAddress( hMsvcrt,"wcscpy_s" );
1391     p_wcsupr_s = (void *)GetProcAddress( hMsvcrt,"_wcsupr_s" );
1392     p_strnlen = (void *)GetProcAddress( hMsvcrt,"strnlen" );
1393     p_strtoi64 = (void *)GetProcAddress(hMsvcrt, "_strtoi64");
1394     p_strtoui64 = (void *)GetProcAddress(hMsvcrt, "_strtoui64");
1395     pmbstowcs_s = (void *)GetProcAddress(hMsvcrt, "mbstowcs_s");
1396     pwcstombs_s = (void *)GetProcAddress(hMsvcrt, "wcstombs_s");
1397     p_gcvt_s = (void *)GetProcAddress(hMsvcrt, "_gcvt_s");
1398     p_itoa_s = (void *)GetProcAddress(hMsvcrt, "_itoa_s");
1399
1400     /* MSVCRT memcpy behaves like memmove for overlapping moves,
1401        MFC42 CString::Insert seems to rely on that behaviour */
1402     strcpy(mem,xilstring);
1403     nLen=strlen(xilstring);
1404     pmemcpy(mem+5, mem,nLen+1);
1405     ok(pmemcmp(mem+5,xilstring, nLen) == 0,
1406        "Got result %s\n",mem+5);
1407
1408     /* Test _swab function */
1409     test_swab();
1410
1411     /* Test ismbblead*/
1412     test_mbcp();
1413    /* test _mbsspn */
1414     test_mbsspn();
1415     test_mbsspnp();
1416    /* test _strdup */
1417     test_strdup();
1418     test_strcpy_s();
1419     test_strcat_s();
1420     test__mbsnbcpy_s();
1421     test_mbcjisjms();
1422     test_mbctombb();
1423     test_ismbclegal();
1424     test_strtok();
1425     test_wcscpy_s();
1426     test__wcsupr_s();
1427     test_strtol();
1428     test_strnlen();
1429     test__strtoi64();
1430     test__strtod();
1431     test_mbstowcs();
1432     test_gcvt();
1433     test__itoa_s();
1434 }