dmloader: Don't claim partial success when loading fails.
[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 "winnls.h"
24 #include <string.h>
25 #include <mbstring.h>
26 #include <stdlib.h>
27 #include <stdio.h>
28 #include <mbctype.h>
29 #include <locale.h>
30 #include <errno.h>
31 #include <limits.h>
32
33 static char *buf_to_string(const unsigned char *bin, int len, int nr)
34 {
35     static char buf[2][1024];
36     char *w = buf[nr];
37     int i;
38
39     for (i = 0; i < len; i++)
40     {
41         sprintf(w, "%02x ", (unsigned char)bin[i]);
42         w += strlen(w);
43     }
44     return buf[nr];
45 }
46
47 static void __cdecl test_invalid_parameter_handler(const wchar_t *expression,
48         const wchar_t *function, const wchar_t *file,
49         unsigned line, uintptr_t arg)
50 {
51     /* we just ignore handler calls */
52 }
53
54 #define expect_eq(expr, value, type, format) { type ret = (expr); ok((value) == ret, #expr " expected " format " got " format "\n", value, ret); }
55 #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)); }
56
57 static void* (__cdecl *pmemcpy)(void *, const void *, size_t n);
58 static int* (__cdecl *pmemcmp)(void *, const void *, size_t n);
59 static int (__cdecl *pstrcpy_s)(char *dst, size_t len, const char *src);
60 static int (__cdecl *pstrcat_s)(char *dst, size_t len, const char *src);
61 static int (__cdecl *p_mbsnbcat_s)(unsigned char *dst, size_t size, const unsigned char *src, size_t count);
62 static int (__cdecl *p_mbsnbcpy_s)(unsigned char * dst, size_t size, const unsigned char * src, size_t count);
63 static int (__cdecl *p_wcscpy_s)(wchar_t *wcDest, size_t size, const wchar_t *wcSrc);
64 static int (__cdecl *p_wcsncpy_s)(wchar_t *wcDest, size_t size, const wchar_t *wcSrc, size_t count);
65 static int (__cdecl *p_wcsncat_s)(wchar_t *dst, size_t elem, const wchar_t *src, size_t count);
66 static int (__cdecl *p_wcsupr_s)(wchar_t *str, size_t size);
67 static size_t (__cdecl *p_strnlen)(const char *, size_t);
68 static __int64 (__cdecl *p_strtoi64)(const char *, char **, int);
69 static unsigned __int64 (__cdecl *p_strtoui64)(const char *, char **, int);
70 static int (__cdecl *pwcstombs_s)(size_t*,char*,size_t,const wchar_t*,size_t);
71 static int (__cdecl *pmbstowcs_s)(size_t*,wchar_t*,size_t,const char*,size_t);
72 static size_t (__cdecl *pwcsrtombs)(char*, const wchar_t**, size_t, int*);
73 static errno_t (__cdecl *p_gcvt_s)(char*,size_t,double,int);
74 static errno_t (__cdecl *p_itoa_s)(int,char*,size_t,int);
75 static errno_t (__cdecl *p_strlwr_s)(char*,size_t);
76 static errno_t (__cdecl *p_ultoa_s)(__msvcrt_ulong,char*,size_t,int);
77 static int *p__mb_cur_max;
78 static unsigned char *p_mbctype;
79 static _invalid_parameter_handler (__cdecl *p_set_invalid_parameter_handler)(_invalid_parameter_handler);
80 static int (__cdecl *p_wcslwr_s)(wchar_t*,size_t);
81 static errno_t (__cdecl *p_mbsupr_s)(unsigned char *str, size_t numberOfElements);
82 static errno_t (__cdecl *p_mbslwr_s)(unsigned char *str, size_t numberOfElements);
83 static int (__cdecl *p_wctob)(wint_t);
84 static int (__cdecl *p_tolower)(int);
85
86 #define SETNOFAIL(x,y) x = (void*)GetProcAddress(hMsvcrt,y)
87 #define SET(x,y) SETNOFAIL(x,y); ok(x != NULL, "Export '%s' not found\n", y)
88
89 static HMODULE hMsvcrt;
90
91 static void test_swab( void ) {
92     char original[]  = "BADCFEHGJILKNMPORQTSVUXWZY@#";
93     char expected1[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ@#";
94     char expected2[] = "ABCDEFGHIJKLMNOPQRSTUVWX$";
95     char expected3[] = "$";
96     
97     char from[30];
98     char to[30];
99     
100     int testsize;
101     
102     /* Test 1 - normal even case */                               
103     memset(to,'$', sizeof(to));
104     memset(from,'@', sizeof(from));
105     testsize = 26;
106     memcpy(from, original, testsize);
107     _swab( from, to, testsize );
108     ok(memcmp(to,expected1,testsize) == 0, "Testing even size %d returned '%*.*s'\n", testsize, testsize, testsize, to);
109
110     /* Test 2 - uneven case  */                               
111     memset(to,'$', sizeof(to));
112     memset(from,'@', sizeof(from));
113     testsize = 25;
114     memcpy(from, original, testsize);
115     _swab( from, to, testsize );
116     ok(memcmp(to,expected2,testsize) == 0, "Testing odd size %d returned '%*.*s'\n", testsize, testsize, testsize, to);
117
118     /* Test 3 - from = to */                               
119     memset(to,'$', sizeof(to));
120     memset(from,'@', sizeof(from));
121     testsize = 26;
122     memcpy(to, original, testsize);
123     _swab( to, to, testsize );
124     ok(memcmp(to,expected1,testsize) == 0, "Testing overlapped size %d returned '%*.*s'\n", testsize, testsize, testsize, to);
125
126     /* Test 4 - 1 bytes */                               
127     memset(to,'$', sizeof(to));
128     memset(from,'@', sizeof(from));
129     testsize = 1;
130     memcpy(from, original, testsize);
131     _swab( from, to, testsize );
132     ok(memcmp(to,expected3,testsize) == 0, "Testing small size %d returned '%*.*s'\n", testsize, testsize, testsize, to);
133 }
134
135 #if 0      /* use this to generate more tests */
136
137 static void test_codepage(int cp)
138 {
139     int i;
140     int prev;
141     int count = 1;
142
143     ok(_setmbcp(cp) == 0, "Couldn't set mbcp\n");
144
145     prev = p_mbctype[0];
146     printf("static int result_cp_%d_mbctype[] = { ", cp);
147     for (i = 1; i < 257; i++)
148     {
149         if (p_mbctype[i] != prev)
150         {
151             printf("0x%x,%d, ", prev, count);
152             prev = p_mbctype[i];
153             count = 1;
154         }
155         else
156             count++;
157     }
158     printf("0x%x,%d };\n", prev, count);
159 }
160
161 #else
162
163 /* RLE-encoded mbctype tables for given codepages */
164 static int result_cp_932_mbctype[] = { 0x0,65, 0x8,1, 0x18,26, 0x8,6, 0x28,26, 0x8,4,
165   0x0,1, 0x8,1, 0xc,31, 0x8,1, 0xa,5, 0x9,58, 0xc,29, 0,3 };
166 static int result_cp_936_mbctype[] = { 0x0,65, 0x8,1, 0x18,26, 0x8,6, 0x28,26, 0x8,6,
167   0xc,126, 0,1 };
168 static int result_cp_949_mbctype[] = { 0x0,66, 0x18,26, 0x8,6, 0x28,26, 0x8,6, 0xc,126,
169   0,1 };
170 static int result_cp_950_mbctype[] = { 0x0,65, 0x8,1, 0x18,26, 0x8,6, 0x28,26, 0x8,4,
171   0x0,2, 0x4,32, 0xc,94, 0,1 };
172
173 static void test_cp_table(int cp, int *result)
174 {
175     int i;
176     int count = 0;
177     int curr = 0;
178     _setmbcp(cp);
179     for (i = 0; i < 256; i++)
180     {
181         if (count == 0)
182         {
183             curr = result[0];
184             count = result[1];
185             result += 2;
186         }
187         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);
188         count--;
189     }
190 }
191
192 #define test_codepage(num) test_cp_table(num, result_cp_##num##_mbctype);
193
194 #endif
195
196 static void test_mbcp(void)
197 {
198     int mb_orig_max = *p__mb_cur_max;
199     int curr_mbcp = _getmbcp();
200     unsigned char *mbstring = (unsigned char *)"\xb0\xb1\xb2 \xb3\xb4 \xb5"; /* incorrect string */
201     unsigned char *mbstring2 = (unsigned char *)"\xb0\xb1\xb2\xb3Q\xb4\xb5"; /* correct string */
202     unsigned char *mbsonlylead = (unsigned char *)"\xb0\0\xb1\xb2 \xb3";
203     unsigned char buf[16];
204     int step;
205     CPINFO cp_info;
206
207     /* _mbtype tests */
208
209     /* An SBCS codepage test. The ctype of characters on e.g. CP1252 or CP1250 differs slightly
210      * between versions of Windows. Also Windows 9x seems to ignore the codepage and always uses
211      * CP1252 (or the ACP?) so we test only a few ASCII characters */
212     _setmbcp(1252);
213     expect_eq(p_mbctype[10], 0, char, "%x");
214     expect_eq(p_mbctype[50], 0, char, "%x");
215     expect_eq(p_mbctype[66], _SBUP, char, "%x");
216     expect_eq(p_mbctype[100], _SBLOW, char, "%x");
217     expect_eq(p_mbctype[128], 0, char, "%x");
218     _setmbcp(1250);
219     expect_eq(p_mbctype[10], 0, char, "%x");
220     expect_eq(p_mbctype[50], 0, char, "%x");
221     expect_eq(p_mbctype[66], _SBUP, char, "%x");
222     expect_eq(p_mbctype[100], _SBLOW, char, "%x");
223     expect_eq(p_mbctype[128], 0, char, "%x");
224
225     /* double byte code pages */
226     test_codepage(932);
227     test_codepage(936);
228     test_codepage(949);
229     test_codepage(950);
230
231     _setmbcp(936);
232     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);
233     ok(_ismbblead('\354'), "\354 should be a lead byte\n");
234     ok(_ismbblead(' ') == FALSE, "' ' should not be a lead byte\n");
235     ok(_ismbblead(0x1234b0), "0x1234b0 should not be a lead byte\n");
236     ok(_ismbblead(0x123420) == FALSE, "0x123420 should not be a lead byte\n");
237     ok(_ismbbtrail('\xb0'), "\xa0 should be a trail byte\n");
238     ok(_ismbbtrail(' ') == FALSE, "' ' should not be a trail byte\n");
239
240     /* _ismbslead */
241     expect_eq(_ismbslead(mbstring, &mbstring[0]), -1, int, "%d");
242     expect_eq(_ismbslead(mbstring, &mbstring[1]), FALSE, int, "%d");
243     expect_eq(_ismbslead(mbstring, &mbstring[2]), -1, int, "%d");
244     expect_eq(_ismbslead(mbstring, &mbstring[3]), FALSE, int, "%d");
245     expect_eq(_ismbslead(mbstring, &mbstring[4]), -1, int, "%d");
246     expect_eq(_ismbslead(mbstring, &mbstring[5]), FALSE, int, "%d");
247     expect_eq(_ismbslead(mbstring, &mbstring[6]), FALSE, int, "%d");
248     expect_eq(_ismbslead(mbstring, &mbstring[7]), -1, int, "%d");
249     expect_eq(_ismbslead(mbstring, &mbstring[8]), FALSE, int, "%d");
250
251     expect_eq(_ismbslead(mbsonlylead, &mbsonlylead[0]), -1, int, "%d");
252     expect_eq(_ismbslead(mbsonlylead, &mbsonlylead[1]), FALSE, int, "%d");
253     expect_eq(_ismbslead(mbsonlylead, &mbsonlylead[2]), FALSE, int, "%d");
254     expect_eq(_ismbslead(mbsonlylead, &mbsonlylead[5]), FALSE, int, "%d");
255
256     /* _ismbstrail */
257     expect_eq(_ismbstrail(mbstring, &mbstring[0]), FALSE, int, "%d");
258     expect_eq(_ismbstrail(mbstring, &mbstring[1]), -1, int, "%d");
259     expect_eq(_ismbstrail(mbstring, &mbstring[2]), FALSE, int, "%d");
260     expect_eq(_ismbstrail(mbstring, &mbstring[3]), -1, int, "%d");
261     expect_eq(_ismbstrail(mbstring, &mbstring[4]), FALSE, int, "%d");
262     expect_eq(_ismbstrail(mbstring, &mbstring[5]), -1, int, "%d");
263     expect_eq(_ismbstrail(mbstring, &mbstring[6]), FALSE, int, "%d");
264     expect_eq(_ismbstrail(mbstring, &mbstring[7]), FALSE, int, "%d");
265     expect_eq(_ismbstrail(mbstring, &mbstring[8]), -1, int, "%d");
266
267     expect_eq(_ismbstrail(mbsonlylead, &mbsonlylead[0]), FALSE, int, "%d");
268     expect_eq(_ismbstrail(mbsonlylead, &mbsonlylead[1]), -1, int, "%d");
269     expect_eq(_ismbstrail(mbsonlylead, &mbsonlylead[2]), FALSE, int, "%d");
270     expect_eq(_ismbstrail(mbsonlylead, &mbsonlylead[3]), FALSE, int, "%d");
271     expect_eq(_ismbstrail(mbsonlylead, &mbsonlylead[4]), FALSE, int, "%d");
272     expect_eq(_ismbstrail(mbsonlylead, &mbsonlylead[5]), FALSE, int, "%d");
273
274     /* _mbsbtype */
275     expect_eq(_mbsbtype(mbstring, 0), _MBC_LEAD, int, "%d");
276     expect_eq(_mbsbtype(mbstring, 1), _MBC_TRAIL, int, "%d");
277     expect_eq(_mbsbtype(mbstring, 2), _MBC_LEAD, int, "%d");
278     expect_eq(_mbsbtype(mbstring, 3), _MBC_ILLEGAL, int, "%d");
279     expect_eq(_mbsbtype(mbstring, 4), _MBC_LEAD, int, "%d");
280     expect_eq(_mbsbtype(mbstring, 5), _MBC_TRAIL, int, "%d");
281     expect_eq(_mbsbtype(mbstring, 6), _MBC_SINGLE, int, "%d");
282     expect_eq(_mbsbtype(mbstring, 7), _MBC_LEAD, int, "%d");
283     expect_eq(_mbsbtype(mbstring, 8), _MBC_ILLEGAL, int, "%d");
284
285     expect_eq(_mbsbtype(mbsonlylead, 0), _MBC_LEAD, int, "%d");
286     expect_eq(_mbsbtype(mbsonlylead, 1), _MBC_ILLEGAL, int, "%d");
287     expect_eq(_mbsbtype(mbsonlylead, 2), _MBC_ILLEGAL, int, "%d");
288     expect_eq(_mbsbtype(mbsonlylead, 3), _MBC_ILLEGAL, int, "%d");
289     expect_eq(_mbsbtype(mbsonlylead, 4), _MBC_ILLEGAL, int, "%d");
290     expect_eq(_mbsbtype(mbsonlylead, 5), _MBC_ILLEGAL, int, "%d");
291
292     /* _mbsnextc */
293     expect_eq(_mbsnextc(mbstring), 0xb0b1, int, "%x");
294     expect_eq(_mbsnextc(&mbstring[2]), 0xb220, int, "%x");  /* lead + invalid tail */
295     expect_eq(_mbsnextc(&mbstring[3]), 0x20, int, "%x");    /* single char */
296
297     /* _mbclen/_mbslen */
298     expect_eq(_mbclen(mbstring), 2, int, "%d");
299     expect_eq(_mbclen(&mbstring[2]), 2, int, "%d");
300     expect_eq(_mbclen(&mbstring[3]), 1, int, "%d");
301     expect_eq(_mbslen(mbstring2), 4, int, "%d");
302     expect_eq(_mbslen(mbsonlylead), 0, int, "%d");          /* lead + NUL not counted as character */
303     expect_eq(_mbslen(mbstring), 4, int, "%d");             /* lead + invalid trail counted */
304
305     /* _mbccpy/_mbsncpy */
306     memset(buf, 0xff, sizeof(buf));
307     _mbccpy(buf, mbstring);
308     expect_bin(buf, "\xb0\xb1\xff", 3);
309
310     memset(buf, 0xff, sizeof(buf));
311     _mbsncpy(buf, mbstring, 1);
312     expect_bin(buf, "\xb0\xb1\xff", 3);
313     memset(buf, 0xff, sizeof(buf));
314     _mbsncpy(buf, mbstring, 2);
315     expect_bin(buf, "\xb0\xb1\xb2 \xff", 5);
316     memset(buf, 0xff, sizeof(buf));
317     _mbsncpy(buf, mbstring, 3);
318     expect_bin(buf, "\xb0\xb1\xb2 \xb3\xb4\xff", 7);
319     memset(buf, 0xff, sizeof(buf));
320     _mbsncpy(buf, mbstring, 4);
321     expect_bin(buf, "\xb0\xb1\xb2 \xb3\xb4 \xff", 8);
322     memset(buf, 0xff, sizeof(buf));
323     _mbsncpy(buf, mbstring, 5);
324     expect_bin(buf, "\xb0\xb1\xb2 \xb3\xb4 \0\0\xff", 10);
325     memset(buf, 0xff, sizeof(buf));
326     _mbsncpy(buf, mbsonlylead, 6);
327     expect_bin(buf, "\0\0\0\0\0\0\0\xff", 8);
328
329     memset(buf, 0xff, sizeof(buf));
330     _mbsnbcpy(buf, mbstring2, 2);
331     expect_bin(buf, "\xb0\xb1\xff", 3);
332     _mbsnbcpy(buf, mbstring2, 3);
333     expect_bin(buf, "\xb0\xb1\0\xff", 4);
334     _mbsnbcpy(buf, mbstring2, 4);
335     expect_bin(buf, "\xb0\xb1\xb2\xb3\xff", 5);
336     memset(buf, 0xff, sizeof(buf));
337     _mbsnbcpy(buf, mbsonlylead, 5);
338     expect_bin(buf, "\0\0\0\0\0\xff", 6);
339
340     /* _mbsinc/mbsdec */
341     step = _mbsinc(mbstring) - mbstring;
342     ok(step == 2, "_mbsinc adds %d (exp. 2)\n", step);
343     step = _mbsinc(&mbstring[2]) - &mbstring[2];  /* lead + invalid tail */
344     ok(step == 2, "_mbsinc adds %d (exp. 2)\n", step);
345
346     step = _mbsninc(mbsonlylead, 1) - mbsonlylead;
347     ok(step == 0, "_mbsninc adds %d (exp. 0)\n", step);
348     step = _mbsninc(mbsonlylead, 2) - mbsonlylead;  /* lead + NUL byte + lead + char */
349     ok(step == 0, "_mbsninc adds %d (exp. 0)\n", step);
350     step = _mbsninc(mbstring2, 0) - mbstring2;
351     ok(step == 0, "_mbsninc adds %d (exp. 2)\n", step);
352     step = _mbsninc(mbstring2, 1) - mbstring2;
353     ok(step == 2, "_mbsninc adds %d (exp. 2)\n", step);
354     step = _mbsninc(mbstring2, 2) - mbstring2;
355     ok(step == 4, "_mbsninc adds %d (exp. 4)\n", step);
356     step = _mbsninc(mbstring2, 3) - mbstring2;
357     ok(step == 5, "_mbsninc adds %d (exp. 5)\n", step);
358     step = _mbsninc(mbstring2, 4) - mbstring2;
359     ok(step == 7, "_mbsninc adds %d (exp. 7)\n", step);
360     step = _mbsninc(mbstring2, 5) - mbstring2;
361     ok(step == 7, "_mbsninc adds %d (exp. 7)\n", step);
362     step = _mbsninc(mbstring2, 17) - mbstring2;
363     ok(step == 7, "_mbsninc adds %d (exp. 7)\n", step);
364
365     /* functions that depend on locale codepage, not mbcp.
366      * we hope the current locale to be SBCS because setlocale(LC_ALL, ".1252") seems not to work yet
367      * (as of Wine 0.9.43)
368      */
369     GetCPInfo(GetACP(), &cp_info);
370     if (cp_info.MaxCharSize == 1)
371     {
372         expect_eq(mblen((char *)mbstring, 3), 1, int, "%x");
373         expect_eq(_mbstrlen((char *)mbstring2), 7, int, "%d");
374     }
375     else
376         skip("Current locale has double-byte charset - could lead to false positives\n");
377
378     _setmbcp(1361);
379     expect_eq(_ismbblead(0x80), 0, int, "%d");
380     todo_wine {
381       expect_eq(_ismbblead(0x81), 1, int, "%d");
382       expect_eq(_ismbblead(0x83), 1, int, "%d");
383     }
384     expect_eq(_ismbblead(0x84), 1, int, "%d");
385     expect_eq(_ismbblead(0xd3), 1, int, "%d");
386     expect_eq(_ismbblead(0xd7), 0, int, "%d");
387     todo_wine {
388       expect_eq(_ismbblead(0xd8), 1, int, "%d");
389     }
390     expect_eq(_ismbblead(0xd9), 1, int, "%d");
391
392     expect_eq(_ismbbtrail(0x30), 0, int, "%d");
393     expect_eq(_ismbbtrail(0x31), 1, int, "%d");
394     expect_eq(_ismbbtrail(0x7e), 1, int, "%d");
395     expect_eq(_ismbbtrail(0x7f), 0, int, "%d");
396     expect_eq(_ismbbtrail(0x80), 0, int, "%d");
397     expect_eq(_ismbbtrail(0x81), 1, int, "%d");
398     expect_eq(_ismbbtrail(0xfe), 1, int, "%d");
399     expect_eq(_ismbbtrail(0xff), 0, int, "%d");
400
401     _setmbcp(curr_mbcp);
402 }
403
404 static void test_mbsspn( void)
405 {
406     unsigned char str1[]="cabernet";
407     unsigned char str2[]="shiraz";
408     unsigned char set[]="abc";
409     unsigned char empty[]="";
410     int ret;
411     ret=_mbsspn( str1, set);
412     ok( ret==3, "_mbsspn returns %d should be 3\n", ret);
413     ret=_mbsspn( str2, set);
414     ok( ret==0, "_mbsspn returns %d should be 0\n", ret);
415     ret=_mbsspn( str1, empty);
416     ok( ret==0, "_mbsspn returns %d should be 0\n", ret);
417 }
418
419 static void test_mbsspnp( void)
420 {
421     unsigned char str1[]="cabernet";
422     unsigned char str2[]="shiraz";
423     unsigned char set[]="abc";
424     unsigned char empty[]="";
425     unsigned char full[]="abcenrt";
426     unsigned char* ret;
427     ret=_mbsspnp( str1, set);
428     ok( ret[0]=='e', "_mbsspnp returns %c should be e\n", ret[0]);
429     ret=_mbsspnp( str2, set);
430     ok( ret[0]=='s', "_mbsspnp returns %c should be s\n", ret[0]);
431     ret=_mbsspnp( str1, empty);
432     ok( ret[0]=='c', "_mbsspnp returns %c should be c\n", ret[0]);
433     ret=_mbsspnp( str1, full);
434     ok( ret==NULL, "_mbsspnp returns %p should be NULL\n", ret);
435 }
436
437 static void test_strdup(void)
438 {
439    char *str;
440    str = _strdup( 0 );
441    ok( str == 0, "strdup returns %s should be 0\n", str);
442    free( str );
443 }
444
445 static void test_strcpy_s(void)
446 {
447     char dest[8];
448     const char *small = "small";
449     const char *big = "atoolongstringforthislittledestination";
450     int ret;
451
452     if(!pstrcpy_s)
453     {
454         skip("strcpy_s not found\n");
455         return;
456     }
457
458     memset(dest, 'X', sizeof(dest));
459     ret = pstrcpy_s(dest, sizeof(dest), small);
460     ok(ret == 0, "Copying a string into a big enough destination returned %d, expected 0\n", ret);
461     ok(dest[0] == 's' && dest[1] == 'm' && dest[2] == 'a' && dest[3] == 'l' &&
462        dest[4] == 'l' && dest[5] == '\0'&& dest[6] == 'X' && dest[7] == 'X',
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, 0, big);
468     ok(ret == EINVAL, "Copying into a destination of size 0 returned %d, expected EINVAL\n", ret);
469     ok(dest[0] == 'X' && 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     ret = pstrcpy_s(dest, 0, NULL);
474     ok(ret == EINVAL, "Copying into a destination of size 0 returned %d, expected EINVAL\n", ret);
475     ok(dest[0] == 'X' && dest[1] == 'X' && dest[2] == 'X' && dest[3] == 'X' &&
476        dest[4] == 'X' && dest[5] == 'X' && dest[6] == 'X' && dest[7] == 'X',
477        "Unexpected return data from strcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
478        dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
479
480     memset(dest, 'X', sizeof(dest));
481     ret = pstrcpy_s(dest, sizeof(dest), big);
482     ok(ret == ERANGE, "Copying a big string in a small location returned %d, expected ERANGE\n", ret);
483     ok(dest[0] == '\0'&& dest[1] == 't' && dest[2] == 'o' && dest[3] == 'o' &&
484        dest[4] == 'l' && dest[5] == 'o' && dest[6] == 'n' && dest[7] == 'g',
485        "Unexpected return data from strcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
486        dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
487
488     memset(dest, 'X', sizeof(dest));
489     ret = pstrcpy_s(dest, sizeof(dest), NULL);
490     ok(ret == EINVAL, "Copying from a NULL source string returned %d, expected EINVAL\n", ret);
491     ok(dest[0] == '\0'&& dest[1] == 'X' && dest[2] == 'X' && dest[3] == 'X' &&
492        dest[4] == 'X' && dest[5] == 'X' && dest[6] == 'X' && dest[7] == 'X',
493        "Unexpected return data from strcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
494        dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
495
496     ret = pstrcpy_s(NULL, sizeof(dest), small);
497     ok(ret == EINVAL, "Copying a big string a NULL dest returned %d, expected EINVAL\n", ret);
498 }
499
500 static void test_strcat_s(void)
501 {
502     char dest[8];
503     const char *small = "sma";
504     int ret;
505
506     if(!pstrcat_s)
507     {
508         skip("strcat_s not found\n");
509         return;
510     }
511
512     memset(dest, 'X', sizeof(dest));
513     dest[0] = '\0';
514     ret = pstrcat_s(dest, sizeof(dest), small);
515     ok(ret == 0, "strcat_s: Copying a string into a big enough destination returned %d, expected 0\n", ret);
516     ok(dest[0] == 's' && dest[1] == 'm' && dest[2] == 'a' && dest[3] == '\0'&&
517        dest[4] == 'X' && dest[5] == 'X' && dest[6] == 'X' && dest[7] == 'X',
518        "Unexpected return data from strcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
519        dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
520     ret = pstrcat_s(dest, sizeof(dest), small);
521     ok(ret == 0, "strcat_s: Attaching a string to a big enough destination returned %d, expected 0\n", ret);
522     ok(dest[0] == 's' && dest[1] == 'm' && dest[2] == 'a' && dest[3] == 's' &&
523        dest[4] == 'm' && dest[5] == 'a' && dest[6] == '\0'&& dest[7] == 'X',
524        "Unexpected return data from strcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
525        dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
526
527     ret = pstrcat_s(dest, sizeof(dest), small);
528     ok(ret == ERANGE, "strcat_s: Attaching a string to a filled up destination returned %d, expected ERANGE\n", ret);
529     ok(dest[0] == '\0'&& dest[1] == 'm' && dest[2] == 'a' && dest[3] == 's' &&
530        dest[4] == 'm' && dest[5] == 'a' && dest[6] == 's' && dest[7] == 'm',
531        "Unexpected return data from strcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
532        dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
533
534     memset(dest, 'X', sizeof(dest));
535     dest[0] = 'a';
536     dest[1] = '\0';
537
538     ret = pstrcat_s(dest, 0, small);
539     ok(ret == EINVAL, "strcat_s: Source len = 0 returned %d, expected EINVAL\n", ret);
540     ok(dest[0] == 'a' && dest[1] == '\0'&& dest[2] == 'X' && dest[3] == 'X' &&
541        dest[4] == 'X' && dest[5] == 'X' && dest[6] == 'X' && dest[7] == 'X',
542        "Unexpected return data from strcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
543        dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
544
545     ret = pstrcat_s(dest, 0, NULL);
546     ok(ret == EINVAL, "strcat_s: len = 0 and src = NULL returned %d, expected EINVAL\n", ret);
547     ok(dest[0] == 'a' && dest[1] == '\0'&& dest[2] == 'X' && dest[3] == 'X' &&
548        dest[4] == 'X' && dest[5] == 'X' && dest[6] == 'X' && dest[7] == 'X',
549        "Unexpected return data from strcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
550        dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
551
552     ret = pstrcat_s(dest, sizeof(dest), NULL);
553     ok(ret == EINVAL, "strcat_s:  Sourcing from NULL returned %d, expected EINVAL\n", ret);
554     ok(dest[0] == '\0'&& dest[1] == '\0'&& dest[2] == 'X' && dest[3] == 'X' &&
555        dest[4] == 'X' && dest[5] == 'X' && dest[6] == 'X' && dest[7] == 'X',
556        "Unexpected return data from strcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
557        dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
558
559     ret = pstrcat_s(NULL, sizeof(dest), small);
560     ok(ret == EINVAL, "strcat_s: Writing to a NULL string returned %d, expected EINVAL\n", ret);
561 }
562
563 static void test__mbsnbcpy_s(void)
564 {
565     unsigned char dest[8];
566     const unsigned char big[] = "atoolongstringforthislittledestination";
567     const unsigned char small[] = "small";
568     int ret;
569
570     if(!p_mbsnbcpy_s)
571     {
572         skip("_mbsnbcpy_s not found\n");
573         return;
574     }
575
576     memset(dest, 'X', sizeof(dest));
577     ret = p_mbsnbcpy_s(dest, sizeof(dest), small, sizeof(small));
578     ok(ret == 0, "_mbsnbcpy_s: Copying a string into a big enough destination returned %d, expected 0\n", ret);
579     ok(dest[0] == 's' && dest[1] == 'm' && dest[2] == 'a' && dest[3] == 'l' &&
580        dest[4] == 'l' && dest[5] == '\0'&& dest[6] == 'X' && dest[7] == 'X',
581        "Unexpected return data from _mbsnbcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
582        dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
583
584     /* WTF? */
585     memset(dest, 'X', sizeof(dest));
586     ret = p_mbsnbcpy_s(dest, sizeof(dest) - 2, big, sizeof(small));
587     ok(ret == ERANGE, "_mbsnbcpy_s: Copying a too long string returned %d, expected ERANGE\n", ret);
588     ok(dest[0] == '\0'&& dest[1] == 't' && dest[2] == 'o' && dest[3] == 'o' &&
589        dest[4] == 'l' && dest[5] == 'o' && dest[6] == 'X' && dest[7] == 'X',
590        "Unexpected return data from _mbsnbcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
591        dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
592
593     memset(dest, 'X', sizeof(dest));
594     ret = p_mbsnbcpy_s(dest, sizeof(dest) - 2, big, 4);
595     ok(ret == 0, "_mbsnbcpy_s: Copying a too long string with a count cap returned %d, expected 0\n", ret);
596     ok(dest[0] == 'a' && dest[1] == 't' && dest[2] == 'o' && dest[3] == 'o' &&
597        dest[4] == '\0'&& dest[5] == 'X' && dest[6] == 'X' && dest[7] == 'X',
598        "Unexpected return data from _mbsnbcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
599        dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
600
601     memset(dest, 'X', sizeof(dest));
602     ret = p_mbsnbcpy_s(dest, sizeof(dest) - 2, small, sizeof(small) + 10);
603     ok(ret == 0, "_mbsnbcpy_s: Copying more data than the source string len returned %d, expected 0\n", ret);
604     ok(dest[0] == 's' && dest[1] == 'm' && dest[2] == 'a' && dest[3] == 'l' &&
605        dest[4] == 'l' && dest[5] == '\0'&& dest[6] == 'X' && dest[7] == 'X',
606        "Unexpected return data from _mbsnbcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
607        dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
608 }
609
610 static void test_wcscpy_s(void)
611 {
612     static const WCHAR szLongText[] = { 'T','h','i','s','A','L','o','n','g','s','t','r','i','n','g',0 };
613     static WCHAR szDest[18];
614     static WCHAR szDestShort[8];
615     int ret;
616
617     if(!p_wcscpy_s)
618     {
619         win_skip("wcscpy_s not found\n");
620         return;
621     }
622
623     /* Test NULL Dest */
624     ret = p_wcscpy_s(NULL, 18, szLongText);
625     ok(ret == EINVAL, "p_wcscpy_s expect EINVAL got %d\n", ret);
626
627     /* Test NULL Source */
628     szDest[0] = 'A';
629     ret = p_wcscpy_s(szDest, 18, NULL);
630     ok(ret == EINVAL, "expected EINVAL got %d\n", ret);
631     ok(szDest[0] == 0, "szDest[0] not 0\n");
632
633     /* Test invalid size */
634     szDest[0] = 'A';
635     ret = p_wcscpy_s(szDest, 0, szLongText);
636     /* Later versions changed the return value for this case to EINVAL,
637      * and don't modify the result if the dest size is 0.
638      */
639     ok(ret == ERANGE || ret == EINVAL, "expected ERANGE/EINVAL got %d\n", ret);
640     ok(szDest[0] == 0 || ret == EINVAL, "szDest[0] not 0\n");
641
642     /* Copy same buffer size */
643     ret = p_wcscpy_s(szDest, 18, szLongText);
644     ok(ret == 0, "expected 0 got %d\n", ret);
645     ok(lstrcmpW(szDest, szLongText) == 0, "szDest != szLongText\n");
646
647     /* Copy smaller buffer size */
648     szDest[0] = 'A';
649     ret = p_wcscpy_s(szDestShort, 8, szLongText);
650     ok(ret == ERANGE || ret == EINVAL, "expected ERANGE/EINVAL got %d\n", ret);
651     ok(szDestShort[0] == 0, "szDestShort[0] not 0\n");
652
653     if(!p_wcsncpy_s)
654     {
655         win_skip("wcsncpy_s not found\n");
656         return;
657     }
658
659     ret = p_wcsncpy_s(NULL, 18, szLongText, sizeof(szLongText)/sizeof(WCHAR));
660     ok(ret == EINVAL, "p_wcsncpy_s expect EINVAL got %d\n", ret);
661
662     szDest[0] = 'A';
663     ret = p_wcsncpy_s(szDest, 18, NULL, 1);
664     ok(ret == EINVAL, "expected EINVAL got %d\n", ret);
665     ok(szDest[0] == 0, "szDest[0] not 0\n");
666
667     szDest[0] = 'A';
668     ret = p_wcsncpy_s(szDest, 18, NULL, 0);
669     ok(ret == 0, "expected ERROR_SUCCESS got %d\n", ret);
670     ok(szDest[0] == 0, "szDest[0] not 0\n");
671
672     szDest[0] = 'A';
673     ret = p_wcsncpy_s(szDest, 0, szLongText, sizeof(szLongText)/sizeof(WCHAR));
674     ok(ret == ERANGE || ret == EINVAL, "expected ERANGE/EINVAL got %d\n", ret);
675     ok(szDest[0] == 0 || ret == EINVAL, "szDest[0] not 0\n");
676
677     ret = p_wcsncpy_s(szDest, 18, szLongText, sizeof(szLongText)/sizeof(WCHAR));
678     ok(ret == 0, "expected 0 got %d\n", ret);
679     ok(lstrcmpW(szDest, szLongText) == 0, "szDest != szLongText\n");
680
681     szDest[0] = 'A';
682     ret = p_wcsncpy_s(szDestShort, 8, szLongText, sizeof(szLongText)/sizeof(WCHAR));
683     ok(ret == ERANGE || ret == EINVAL, "expected ERANGE/EINVAL got %d\n", ret);
684     ok(szDestShort[0] == 0, "szDestShort[0] not 0\n");
685 }
686
687 static void test__wcsupr_s(void)
688 {
689     static const WCHAR mixedString[] = {'M', 'i', 'X', 'e', 'D', 'l', 'o', 'w',
690                                         'e', 'r', 'U', 'P', 'P', 'E', 'R', 0};
691     static const WCHAR expectedString[] = {'M', 'I', 'X', 'E', 'D', 'L', 'O',
692                                            'W', 'E', 'R', 'U', 'P', 'P', 'E',
693                                            'R', 0};
694     WCHAR testBuffer[2*sizeof(mixedString)/sizeof(WCHAR)];
695     int ret;
696
697     if (!p_wcsupr_s)
698     {
699         win_skip("_wcsupr_s not found\n");
700         return;
701     }
702
703     /* Test NULL input string and invalid size. */
704     errno = EBADF;
705     ret = p_wcsupr_s(NULL, 0);
706     ok(ret == EINVAL, "Expected _wcsupr_s to fail with EINVAL, got %d\n", ret);
707     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
708
709     /* Test NULL input string and valid size. */
710     errno = EBADF;
711     ret = p_wcsupr_s(NULL, sizeof(testBuffer)/sizeof(WCHAR));
712     ok(ret == EINVAL, "Expected _wcsupr_s to fail with EINVAL, got %d\n", ret);
713     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
714
715     /* Test empty string with zero size. */
716     errno = EBADF;
717     testBuffer[0] = '\0';
718     ret = p_wcsupr_s(testBuffer, 0);
719     ok(ret == EINVAL, "Expected _wcsupr_s to fail with EINVAL, got %d\n", ret);
720     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
721     ok(testBuffer[0] == '\0', "Expected the buffer to be unchanged\n");
722
723     /* Test empty string with size of one. */
724     testBuffer[0] = '\0';
725     ret = p_wcsupr_s(testBuffer, 1);
726     ok(ret == 0, "Expected _wcsupr_s to succeed, got %d\n", ret);
727     ok(testBuffer[0] == '\0', "Expected the buffer to be unchanged\n");
728
729     /* Test one-byte buffer with zero size. */
730     errno = EBADF;
731     testBuffer[0] = 'x';
732     ret = p_wcsupr_s(testBuffer, 0);
733     ok(ret == EINVAL, "Expected _wcsupr_s to fail with EINVAL, got %d\n", ret);
734     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
735     ok(testBuffer[0] == '\0', "Expected the first buffer character to be null\n");
736
737     /* Test one-byte buffer with size of one. */
738     errno = EBADF;
739     testBuffer[0] = 'x';
740     ret = p_wcsupr_s(testBuffer, 1);
741     ok(ret == EINVAL, "Expected _wcsupr_s to fail with EINVAL, got %d\n", ret);
742     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
743     ok(testBuffer[0] == '\0', "Expected the first buffer character to be null\n");
744
745     /* Test invalid size. */
746     wcscpy(testBuffer, mixedString);
747     errno = EBADF;
748     ret = p_wcsupr_s(testBuffer, 0);
749     ok(ret == EINVAL, "Expected _wcsupr_s to fail with EINVAL, got %d\n", ret);
750     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
751     ok(testBuffer[0] == '\0', "Expected the first buffer character to be null\n");
752
753     /* Test normal string uppercasing. */
754     wcscpy(testBuffer, mixedString);
755     ret = p_wcsupr_s(testBuffer, sizeof(mixedString)/sizeof(WCHAR));
756     ok(ret == 0, "Expected _wcsupr_s to succeed, got %d\n", ret);
757     ok(!wcscmp(testBuffer, expectedString), "Expected the string to be fully upper-case\n");
758
759     /* Test uppercasing with a shorter buffer size count. */
760     wcscpy(testBuffer, mixedString);
761     errno = EBADF;
762     ret = p_wcsupr_s(testBuffer, sizeof(mixedString)/sizeof(WCHAR) - 1);
763     ok(ret == EINVAL, "Expected _wcsupr_s to fail with EINVAL, got %d\n", ret);
764     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
765     ok(testBuffer[0] == '\0', "Expected the first buffer character to be null\n");
766
767     /* Test uppercasing with a longer buffer size count. */
768     wcscpy(testBuffer, mixedString);
769     ret = p_wcsupr_s(testBuffer, sizeof(testBuffer)/sizeof(WCHAR));
770     ok(ret == 0, "Expected _wcsupr_s to succeed, got %d\n", ret);
771     ok(!wcscmp(testBuffer, expectedString), "Expected the string to be fully upper-case\n");
772 }
773
774 static void test__wcslwr_s(void)
775 {
776     static const WCHAR mixedString[] = {'M', 'i', 'X', 'e', 'D', 'l', 'o', 'w',
777                                         'e', 'r', 'U', 'P', 'P', 'E', 'R', 0};
778     static const WCHAR expectedString[] = {'m', 'i', 'x', 'e', 'd', 'l', 'o',
779                                            'w', 'e', 'r', 'u', 'p', 'p', 'e',
780                                            'r', 0};
781     WCHAR buffer[2*sizeof(mixedString)/sizeof(WCHAR)];
782     int ret;
783
784     if (!p_wcslwr_s)
785     {
786         win_skip("_wcslwr_s not found\n");
787         return;
788     }
789
790     /* Test NULL input string and invalid size. */
791     errno = EBADF;
792     ret = p_wcslwr_s(NULL, 0);
793     ok(ret == EINVAL, "expected EINVAL, got %d\n", ret);
794     ok(errno == EINVAL, "expected errno EINVAL, got %d\n", errno);
795
796     /* Test NULL input string and valid size. */
797     errno = EBADF;
798     ret = p_wcslwr_s(NULL, sizeof(buffer)/sizeof(wchar_t));
799     ok(ret == EINVAL, "expected EINVAL, got %d\n", ret);
800     ok(errno == EINVAL, "expected errno EINVAL, got %d\n", errno);
801
802     /* Test empty string with zero size. */
803     errno = EBADF;
804     buffer[0] = 'a';
805     ret = p_wcslwr_s(buffer, 0);
806     ok(ret == EINVAL, "expected EINVAL, got %d\n", ret);
807     ok(errno == EINVAL, "expected errno EINVAL, got %d\n", errno);
808     ok(buffer[0] == 0, "expected empty string\n");
809
810     /* Test empty string with size of one. */
811     buffer[0] = 0;
812     ret = p_wcslwr_s(buffer, 1);
813     ok(ret == 0, "got %d\n", ret);
814     ok(buffer[0] == 0, "expected buffer to be unchanged\n");
815
816     /* Test one-byte buffer with zero size. */
817     errno = EBADF;
818     buffer[0] = 'x';
819     ret = p_wcslwr_s(buffer, 0);
820     ok(ret == EINVAL, "expected EINVAL, got %d\n", ret);
821     ok(errno == EINVAL, "expected errno to be EINVAL, got %d\n", errno);
822     ok(buffer[0] == '\0', "expected empty string\n");
823
824     /* Test one-byte buffer with size of one. */
825     errno = EBADF;
826     buffer[0] = 'x';
827     ret = p_wcslwr_s(buffer, 1);
828     ok(ret == EINVAL, "expected EINVAL, got %d\n", ret);
829     ok(errno == EINVAL, "expected errno to be EINVAL, got %d\n", errno);
830     ok(buffer[0] == '\0', "expected empty string\n");
831
832     /* Test invalid size. */
833     wcscpy(buffer, mixedString);
834     errno = EBADF;
835     ret = p_wcslwr_s(buffer, 0);
836     ok(ret == EINVAL, "Expected EINVAL, got %d\n", ret);
837     ok(errno == EINVAL, "expected errno to be EINVAL, got %d\n", errno);
838     ok(buffer[0] == '\0', "expected empty string\n");
839
840     /* Test normal string uppercasing. */
841     wcscpy(buffer, mixedString);
842     ret = p_wcslwr_s(buffer, sizeof(mixedString)/sizeof(WCHAR));
843     ok(ret == 0, "expected 0, got %d\n", ret);
844     ok(!wcscmp(buffer, expectedString), "expected lowercase\n");
845
846     /* Test uppercasing with a shorter buffer size count. */
847     wcscpy(buffer, mixedString);
848     errno = EBADF;
849     ret = p_wcslwr_s(buffer, sizeof(mixedString)/sizeof(WCHAR) - 1);
850     ok(ret == EINVAL, "expected EINVAL, got %d\n", ret);
851     ok(errno == EINVAL, "expected errno to be EINVAL, got %d\n", errno);
852     ok(buffer[0] == '\0', "expected empty string\n");
853
854     /* Test uppercasing with a longer buffer size count. */
855     wcscpy(buffer, mixedString);
856     ret = p_wcslwr_s(buffer, sizeof(buffer)/sizeof(WCHAR));
857     ok(ret == 0, "expected 0, got %d\n", ret);
858     ok(!wcscmp(buffer, expectedString), "expected lowercase\n");
859 }
860
861 static void test_mbcjisjms(void)
862 {
863     /* List of value-pairs to test. The test assumes the last pair to be {0, ..} */
864     unsigned int jisjms[][2] = { {0x2020, 0}, {0x2021, 0}, {0x2120, 0}, {0x2121, 0x8140},
865                                  {0x7f7f, 0}, {0x7f7e, 0}, {0x7e7f, 0}, {0x7e7e, 0xeffc},
866                                  {0x2121FFFF, 0}, {0x2223, 0x81a1}, {0x237e, 0x829e}, {0, 0}};
867     unsigned int ret, exp, i;
868
869     i = 0;
870     do
871     {
872         ret = _mbcjistojms(jisjms[i][0]);
873
874         if(_getmbcp() == 932)   /* Japanese codepage? */
875             exp = jisjms[i][1];
876         else
877             exp = jisjms[i][0]; /* If not, no conversion */
878
879         ok(ret == exp, "Expected 0x%x, got 0x%x\n", exp, ret);
880     } while(jisjms[i++][0] != 0);
881 }
882
883 static void test_mbcjmsjis(void)
884 {
885     /* List of value-pairs to test. The test assumes the last pair to be {0, ..} */
886     unsigned int jmsjis[][2] = { {0x80fc, 0}, {0x813f, 0}, {0x8140, 0x2121},
887                                  {0x817e, 0x215f}, {0x817f, 0}, {0x8180, 0x2160},
888                                  {0x819e, 0x217e}, {0x819f, 0x2221}, {0x81fc, 0x227e},
889                                  {0x81fd, 0}, {0x9ffc, 0x5e7e}, {0x9ffd, 0},
890                                  {0xa040, 0}, {0xdffc, 0}, {0xe040, 0x5f21},
891                                  {0xeffc, 0x7e7e}, {0xf040, 0}, {0x21, 0}, {0, 0}};
892     int cp[] = { 932, 936, 939, 950, 1361, _MB_CP_SBCS };
893     unsigned int i, j;
894     int prev_cp = _getmbcp();
895
896     for (i = 0; i < sizeof(cp)/sizeof(cp[0]); i++)
897     {
898         _setmbcp(cp[i]);
899         for (j = 0; jmsjis[j][0] != 0; j++)
900         {
901             unsigned int ret, exp;
902             ret = _mbcjmstojis(jmsjis[j][0]);
903             exp = (cp[i] == 932) ? jmsjis[j][1] : jmsjis[j][0];
904             ok(ret == exp, "Expected 0x%x, got 0x%x (0x%x, codepage=%d)\n",
905                exp, ret, jmsjis[j][0], cp[i]);
906         }
907     }
908     _setmbcp(prev_cp);
909 }
910
911 static void test_mbctombb(void)
912 {
913     static const unsigned int mbcmbb_932[][2] = {
914         {0x829e, 0x829e}, {0x829f, 0xa7}, {0x82f1, 0xdd}, {0x82f2, 0x82f2},
915         {0x833f, 0x833f}, {0x8340, 0xa7}, {0x837e, 0xd0}, {0x837f, 0x837f},
916         {0x8380, 0xd1}, {0x8396, 0xb9}, {0x8397, 0x8397}, {0x813f, 0x813f},
917         {0x8140, 0x20}, {0x814c, 0x814c}, {0x814f, 0x5e}, {0x8197, 0x40},
918         {0x8198, 0x8198}, {0x8258, 0x39}, {0x8259, 0x8259}, {0x825f, 0x825f},
919         {0x8260, 0x41}, {0x82f1, 0xdd}, {0x82f2, 0x82f2}, {0,0}};
920     unsigned int exp, ret, i;
921     unsigned int prev_cp = _getmbcp();
922
923     _setmbcp(932);
924     for (i = 0; mbcmbb_932[i][0] != 0; i++)
925     {
926         ret = _mbctombb(mbcmbb_932[i][0]);
927         exp = mbcmbb_932[i][1];
928         ok(ret == exp, "Expected 0x%x, got 0x%x\n", exp, ret);
929     }
930     _setmbcp(prev_cp);
931 }
932
933 static void test_ismbclegal(void) {
934     unsigned int prev_cp = _getmbcp();
935     int ret, exp, err;
936     unsigned int i;
937
938     _setmbcp(932); /* Japanese */
939     err = 0;
940     for(i = 0; i < 0x10000; i++) {
941         ret = _ismbclegal(i);
942         exp = ((HIBYTE(i) >= 0x81 && HIBYTE(i) <= 0x9F) ||
943                (HIBYTE(i) >= 0xE0 && HIBYTE(i) <= 0xFC)) &&
944               ((LOBYTE(i) >= 0x40 && LOBYTE(i) <= 0x7E) ||
945                (LOBYTE(i) >= 0x80 && LOBYTE(i) <= 0xFC));
946         if(ret != exp) {
947             err = 1;
948             break;
949         }
950     }
951     ok(!err, "_ismbclegal (932) : Expected 0x%x, got 0x%x (0x%x)\n", exp, ret, i);
952     _setmbcp(936); /* Chinese (GBK) */
953     err = 0;
954     for(i = 0; i < 0x10000; i++) {
955         ret = _ismbclegal(i);
956         exp = HIBYTE(i) >= 0x81 && HIBYTE(i) <= 0xFE &&
957               LOBYTE(i) >= 0x40 && LOBYTE(i) <= 0xFE;
958         if(ret != exp) {
959             err = 1;
960             break;
961         }
962     }
963     ok(!err, "_ismbclegal (936) : Expected 0x%x, got 0x%x (0x%x)\n", exp, ret, i);
964     _setmbcp(949); /* Korean */
965     err = 0;
966     for(i = 0; i < 0x10000; i++) {
967         ret = _ismbclegal(i);
968         exp = HIBYTE(i) >= 0x81 && HIBYTE(i) <= 0xFE &&
969               LOBYTE(i) >= 0x41 && LOBYTE(i) <= 0xFE;
970         if(ret != exp) {
971             err = 1;
972             break;
973         }
974     }
975     ok(!err, "_ismbclegal (949) : Expected 0x%x, got 0x%x (0x%x)\n", exp, ret, i);
976     _setmbcp(950); /* Chinese (Big5) */
977     err = 0;
978     for(i = 0; i < 0x10000; i++) {
979         ret = _ismbclegal(i);
980         exp = HIBYTE(i) >= 0x81 && HIBYTE(i) <= 0xFE &&
981             ((LOBYTE(i) >= 0x40 && LOBYTE(i) <= 0x7E) ||
982              (LOBYTE(i) >= 0xA1 && LOBYTE(i) <= 0xFE));
983         if(ret != exp) {
984             err = 1;
985             break;
986         }
987     }
988     ok(!err, "_ismbclegal (950) : Expected 0x%x, got 0x%x (0x%x)\n", exp, ret, i);
989     _setmbcp(1361); /* Korean (Johab) */
990     err = 0;
991     for(i = 0; i < 0x10000; i++) {
992         ret = _ismbclegal(i);
993         exp = ((HIBYTE(i) >= 0x81 && HIBYTE(i) <= 0xD3) ||
994                (HIBYTE(i) >= 0xD8 && HIBYTE(i) <= 0xF9)) &&
995               ((LOBYTE(i) >= 0x31 && LOBYTE(i) <= 0x7E) ||
996                (LOBYTE(i) >= 0x81 && LOBYTE(i) <= 0xFE)) &&
997                 HIBYTE(i) != 0xDF;
998         if(ret != exp) {
999             err = 1;
1000             break;
1001         }
1002     }
1003     todo_wine ok(!err, "_ismbclegal (1361) : Expected 0x%x, got 0x%x (0x%x)\n", exp, ret, i);
1004
1005     _setmbcp(prev_cp);
1006 }
1007
1008 static const struct {
1009     const char* string;
1010     const char* delimiter;
1011     int exp_offsetret1; /* returned offset from string after first call to strtok()
1012                            -1 means NULL  */
1013     int exp_offsetret2; /* returned offset from string after second call to strtok()
1014                            -1 means NULL  */
1015     int exp_offsetret3; /* returned offset from string after third call to strtok()
1016                            -1 means NULL  */
1017 } testcases_strtok[] = {
1018     { "red cabernet", " ", 0, 4, -1 },
1019     { "sparkling white riesling", " ", 0, 10, 16 },
1020     { " pale cream sherry", "e ", 1, 6, 9 },
1021     /* end mark */
1022     { 0}
1023 };
1024
1025 static void test_strtok(void)
1026 {
1027     int i;
1028     char *strret;
1029     char teststr[100];
1030     for( i = 0; testcases_strtok[i].string; i++){
1031         strcpy( teststr, testcases_strtok[i].string);
1032         strret = strtok( teststr, testcases_strtok[i].delimiter);
1033         ok( (int)(strret - teststr) ==  testcases_strtok[i].exp_offsetret1 ||
1034                 (!strret && testcases_strtok[i].exp_offsetret1 == -1),
1035                 "string (%p) \'%s\' return %p\n",
1036                 teststr, testcases_strtok[i].string, strret);
1037         if( !strret) continue;
1038         strret = strtok( NULL, testcases_strtok[i].delimiter);
1039         ok( (int)(strret - teststr) ==  testcases_strtok[i].exp_offsetret2 ||
1040                 (!strret && testcases_strtok[i].exp_offsetret2 == -1),
1041                 "second call string (%p) \'%s\' return %p\n",
1042                 teststr, testcases_strtok[i].string, strret);
1043         if( !strret) continue;
1044         strret = strtok( NULL, testcases_strtok[i].delimiter);
1045         ok( (int)(strret - teststr) ==  testcases_strtok[i].exp_offsetret3 ||
1046                 (!strret && testcases_strtok[i].exp_offsetret3 == -1),
1047                 "third call string (%p) \'%s\' return %p\n",
1048                 teststr, testcases_strtok[i].string, strret);
1049     }
1050 }
1051
1052 static void test_strtol(void)
1053 {
1054     char* e;
1055     LONG l;
1056     ULONG ul;
1057
1058     /* errno is only set in case of error, so reset errno to EBADF to check for errno modification */
1059     /* errno is modified on W2K8+ */
1060     errno = EBADF;
1061     l = strtol("-1234", &e, 0);
1062     ok(l==-1234, "wrong value %d\n", l);
1063     ok(errno == EBADF || broken(errno == 0), "wrong errno %d\n", errno);
1064     errno = EBADF;
1065     ul = strtoul("1234", &e, 0);
1066     ok(ul==1234, "wrong value %u\n", ul);
1067     ok(errno == EBADF || broken(errno == 0), "wrong errno %d\n", errno);
1068
1069     errno = EBADF;
1070     l = strtol("2147483647L", &e, 0);
1071     ok(l==2147483647, "wrong value %d\n", l);
1072     ok(errno == EBADF || broken(errno == 0), "wrong errno %d\n", errno);
1073     errno = EBADF;
1074     l = strtol("-2147483648L", &e, 0);
1075     ok(l==-2147483647L - 1, "wrong value %d\n", l);
1076     ok(errno == EBADF || broken(errno == 0), "wrong errno %d\n", errno);
1077     errno = EBADF;
1078     ul = strtoul("4294967295UL", &e, 0);
1079     ok(ul==4294967295ul, "wrong value %u\n", ul);
1080     ok(errno == EBADF || broken(errno == 0), "wrong errno %d\n", errno);
1081
1082     errno = 0;
1083     l = strtol("9223372036854775807L", &e, 0);
1084     ok(l==2147483647, "wrong value %d\n", l);
1085     ok(errno == ERANGE, "wrong errno %d\n", errno);
1086     errno = 0;
1087     ul = strtoul("9223372036854775807L", &e, 0);
1088     ok(ul==4294967295ul, "wrong value %u\n", ul);
1089     ok(errno == ERANGE, "wrong errno %d\n", errno);
1090 }
1091
1092 static void test_strnlen(void)
1093 {
1094     static const char str[] = "string";
1095     size_t res;
1096
1097     if(!p_strnlen) {
1098         win_skip("strnlen not found\n");
1099         return;
1100     }
1101
1102     res = p_strnlen(str, 20);
1103     ok(res == 6, "Returned length = %d\n", (int)res);
1104
1105     res = p_strnlen(str, 3);
1106     ok(res == 3, "Returned length = %d\n", (int)res);
1107
1108     res = p_strnlen(NULL, 0);
1109     ok(res == 0, "Returned length = %d\n", (int)res);
1110 }
1111
1112 static void test__strtoi64(void)
1113 {
1114     static const char no1[] = "31923";
1115     static const char no2[] = "-213312";
1116     static const char no3[] = "12aa";
1117     static const char no4[] = "abc12";
1118     static const char overflow[] = "99999999999999999999";
1119     static const char neg_overflow[] = "-99999999999999999999";
1120     static const char hex[] = "0x123";
1121     static const char oct[] = "000123";
1122     static const char blanks[] = "        12 212.31";
1123
1124     __int64 res;
1125     unsigned __int64 ures;
1126     char *endpos;
1127
1128     if(!p_strtoi64 || !p_strtoui64) {
1129         win_skip("_strtoi64 or _strtoui64 not found\n");
1130         return;
1131     }
1132
1133     errno = 0xdeadbeef;
1134     res = p_strtoi64(no1, NULL, 10);
1135     ok(res == 31923, "res != 31923\n");
1136     res = p_strtoi64(no2, NULL, 10);
1137     ok(res == -213312, "res != -213312\n");
1138     res = p_strtoi64(no3, NULL, 10);
1139     ok(res == 12, "res != 12\n");
1140     res = p_strtoi64(no4, &endpos, 10);
1141     ok(res == 0, "res != 0\n");
1142     ok(endpos == no4, "Scanning was not stopped on first character\n");
1143     res = p_strtoi64(hex, &endpos, 10);
1144     ok(res == 0, "res != 0\n");
1145     ok(endpos == hex+1, "Incorrect endpos (%p-%p)\n", hex, endpos);
1146     res = p_strtoi64(oct, &endpos, 10);
1147     ok(res == 123, "res != 123\n");
1148     ok(endpos == oct+strlen(oct), "Incorrect endpos (%p-%p)\n", oct, endpos);
1149     res = p_strtoi64(blanks, &endpos, 10);
1150     ok(res == 12, "res != 12\n");
1151     ok(endpos == blanks+10, "Incorrect endpos (%p-%p)\n", blanks, endpos);
1152     ok(errno == 0xdeadbeef, "errno = %x\n", errno);
1153
1154     errno = 0xdeadbeef;
1155     res = p_strtoi64(overflow, &endpos, 10);
1156     ok(res == _I64_MAX, "res != _I64_MAX\n");
1157     ok(endpos == overflow+strlen(overflow), "Incorrect endpos (%p-%p)\n", overflow, endpos);
1158     ok(errno == ERANGE, "errno = %x\n", errno);
1159
1160     errno = 0xdeadbeef;
1161     res = p_strtoi64(neg_overflow, &endpos, 10);
1162     ok(res == _I64_MIN, "res != _I64_MIN\n");
1163     ok(endpos == neg_overflow+strlen(neg_overflow), "Incorrect endpos (%p-%p)\n", neg_overflow, endpos);
1164     ok(errno == ERANGE, "errno = %x\n", errno);
1165
1166     errno = 0xdeadbeef;
1167     res = p_strtoi64(no1, &endpos, 16);
1168     ok(res == 203043, "res != 203043\n");
1169     ok(endpos == no1+strlen(no1), "Incorrect endpos (%p-%p)\n", no1, endpos);
1170     res = p_strtoi64(no2, &endpos, 16);
1171     ok(res == -2175762, "res != -2175762\n");
1172     ok(endpos == no2+strlen(no2), "Incorrect endpos (%p-%p)\n", no2, endpos);
1173     res = p_strtoi64(no3, &endpos, 16);
1174     ok(res == 4778, "res != 4778\n");
1175     ok(endpos == no3+strlen(no3), "Incorrect endpos (%p-%p)\n", no3, endpos);
1176     res = p_strtoi64(no4, &endpos, 16);
1177     ok(res == 703506, "res != 703506\n");
1178     ok(endpos == no4+strlen(no4), "Incorrect endpos (%p-%p)\n", no4, endpos);
1179     res = p_strtoi64(hex, &endpos, 16);
1180     ok(res == 291, "res != 291\n");
1181     ok(endpos == hex+strlen(hex), "Incorrect endpos (%p-%p)\n", hex, endpos);
1182     res = p_strtoi64(oct, &endpos, 16);
1183     ok(res == 291, "res != 291\n");
1184     ok(endpos == oct+strlen(oct), "Incorrect endpos (%p-%p)\n", oct, endpos);
1185     res = p_strtoi64(blanks, &endpos, 16);
1186     ok(res == 18, "res != 18\n");
1187     ok(endpos == blanks+10, "Incorrect endpos (%p-%p)\n", blanks, endpos);
1188     ok(errno == 0xdeadbeef, "errno = %x\n", errno);
1189
1190     errno = 0xdeadbeef;
1191     res = p_strtoi64(hex, &endpos, 36);
1192     ok(res == 1541019, "res != 1541019\n");
1193     ok(endpos == hex+strlen(hex), "Incorrect endpos (%p-%p)\n", hex, endpos);
1194     ok(errno == 0xdeadbeef, "errno = %x\n", errno);
1195
1196     errno = 0xdeadbeef;
1197     res = p_strtoi64(no1, &endpos, 0);
1198     ok(res == 31923, "res != 31923\n");
1199     ok(endpos == no1+strlen(no1), "Incorrect endpos (%p-%p)\n", no1, endpos);
1200     res = p_strtoi64(no2, &endpos, 0);
1201     ok(res == -213312, "res != -213312\n");
1202     ok(endpos == no2+strlen(no2), "Incorrect endpos (%p-%p)\n", no2, endpos);
1203     res = p_strtoi64(no3, &endpos, 10);
1204     ok(res == 12, "res != 12\n");
1205     ok(endpos == no3+2, "Incorrect endpos (%p-%p)\n", no3, endpos);
1206     res = p_strtoi64(no4, &endpos, 10);
1207     ok(res == 0, "res != 0\n");
1208     ok(endpos == no4, "Incorrect endpos (%p-%p)\n", no4, endpos);
1209     res = p_strtoi64(hex, &endpos, 10);
1210     ok(res == 0, "res != 0\n");
1211     ok(endpos == hex+1, "Incorrect endpos (%p-%p)\n", hex, endpos);
1212     res = p_strtoi64(oct, &endpos, 10);
1213     ok(res == 123, "res != 123\n");
1214     ok(endpos == oct+strlen(oct), "Incorrect endpos (%p-%p)\n", oct, endpos);
1215     res = p_strtoi64(blanks, &endpos, 10);
1216     ok(res == 12, "res != 12\n");
1217     ok(endpos == blanks+10, "Incorrect endpos (%p-%p)\n", blanks, endpos);
1218     ok(errno == 0xdeadbeef, "errno = %x\n", errno);
1219
1220     errno = 0xdeadbeef;
1221     ures = p_strtoui64(no1, &endpos, 0);
1222     ok(ures == 31923, "ures != 31923\n");
1223     ok(endpos == no1+strlen(no1), "Incorrect endpos (%p-%p)\n", no1, endpos);
1224     ures = p_strtoui64(no2, &endpos, 0);
1225     ok(ures == -213312, "ures != -213312\n");
1226     ok(endpos == no2+strlen(no2), "Incorrect endpos (%p-%p)\n", no2, endpos);
1227     ures = p_strtoui64(no3, &endpos, 10);
1228     ok(ures == 12, "ures != 12\n");
1229     ok(endpos == no3+2, "Incorrect endpos (%p-%p)\n", no3, endpos);
1230     ures = p_strtoui64(no4, &endpos, 10);
1231     ok(ures == 0, "ures != 0\n");
1232     ok(endpos == no4, "Incorrect endpos (%p-%p)\n", no4, endpos);
1233     ures = p_strtoui64(hex, &endpos, 10);
1234     ok(ures == 0, "ures != 0\n");
1235     ok(endpos == hex+1, "Incorrect endpos (%p-%p)\n", hex, endpos);
1236     ures = p_strtoui64(oct, &endpos, 10);
1237     ok(ures == 123, "ures != 123\n");
1238     ok(endpos == oct+strlen(oct), "Incorrect endpos (%p-%p)\n", oct, endpos);
1239     ures = p_strtoui64(blanks, &endpos, 10);
1240     ok(ures == 12, "ures != 12\n");
1241     ok(endpos == blanks+10, "Incorrect endpos (%p-%p)\n", blanks, endpos);
1242     ok(errno == 0xdeadbeef, "errno = %x\n", errno);
1243
1244     errno = 0xdeadbeef;
1245     ures = p_strtoui64(overflow, &endpos, 10);
1246     ok(ures == _UI64_MAX, "ures != _UI64_MAX\n");
1247     ok(endpos == overflow+strlen(overflow), "Incorrect endpos (%p-%p)\n", overflow, endpos);
1248     ok(errno == ERANGE, "errno = %x\n", errno);
1249
1250     errno = 0xdeadbeef;
1251     ures = p_strtoui64(neg_overflow, &endpos, 10);
1252     ok(ures == 1, "ures != 1\n");
1253     ok(endpos == neg_overflow+strlen(neg_overflow), "Incorrect endpos (%p-%p)\n", neg_overflow, endpos);
1254     ok(errno == ERANGE, "errno = %x\n", errno);
1255 }
1256
1257 static inline BOOL almost_equal(double d1, double d2) {
1258     if(d1-d2>-1e-30 && d1-d2<1e-30)
1259         return TRUE;
1260     return FALSE;
1261 }
1262
1263 static void test__strtod(void)
1264 {
1265     const char double1[] = "12.1";
1266     const char double2[] = "-13.721";
1267     const char double3[] = "INF";
1268     const char double4[] = ".21e12";
1269     const char double5[] = "214353e-3";
1270     const char overflow[] = "1d9999999999999999999";
1271     const char white_chars[] = "  d10";
1272
1273     char *end;
1274     double d;
1275
1276     d = strtod(double1, &end);
1277     ok(almost_equal(d, 12.1), "d = %lf\n", d);
1278     ok(end == double1+4, "incorrect end (%d)\n", (int)(end-double1));
1279
1280     d = strtod(double2, &end);
1281     ok(almost_equal(d, -13.721), "d = %lf\n", d);
1282     ok(end == double2+7, "incorrect end (%d)\n", (int)(end-double2));
1283
1284     d = strtod(double3, &end);
1285     ok(almost_equal(d, 0), "d = %lf\n", d);
1286     ok(end == double3, "incorrect end (%d)\n", (int)(end-double3));
1287
1288     d = strtod(double4, &end);
1289     ok(almost_equal(d, 210000000000.0), "d = %lf\n", d);
1290     ok(end == double4+6, "incorrect end (%d)\n", (int)(end-double4));
1291
1292     d = strtod(double5, &end);
1293     ok(almost_equal(d, 214.353), "d = %lf\n", d);
1294     ok(end == double5+9, "incorrect end (%d)\n", (int)(end-double5));
1295
1296     d = strtod("12.1d2", NULL);
1297     ok(almost_equal(d, 12.1e2), "d = %lf\n", d);
1298
1299     d = strtod(white_chars, &end);
1300     ok(almost_equal(d, 0), "d = %lf\n", d);
1301     ok(end == white_chars, "incorrect end (%d)\n", (int)(end-white_chars));
1302
1303     /* Set locale with non '.' decimal point (',') */
1304     if(!setlocale(LC_ALL, "Polish")) {
1305         win_skip("system with limited locales\n");
1306         return;
1307     }
1308
1309     d = strtod("12.1", NULL);
1310     ok(almost_equal(d, 12.0), "d = %lf\n", d);
1311
1312     d = strtod("12,1", NULL);
1313     ok(almost_equal(d, 12.1), "d = %lf\n", d);
1314
1315     setlocale(LC_ALL, "C");
1316
1317     /* Precision tests */
1318     d = strtod("0.1", NULL);
1319     ok(almost_equal(d, 0.1), "d = %lf\n", d);
1320     d = strtod("-0.1", NULL);
1321     ok(almost_equal(d, -0.1), "d = %lf\n", d);
1322     d = strtod("0.1281832188491894198128921", NULL);
1323     ok(almost_equal(d, 0.1281832188491894198128921), "d = %lf\n", d);
1324     d = strtod("0.82181281288121", NULL);
1325     ok(almost_equal(d, 0.82181281288121), "d = %lf\n", d);
1326     d = strtod("21921922352523587651128218821", NULL);
1327     ok(almost_equal(d, 21921922352523587651128218821.0), "d = %lf\n", d);
1328     d = strtod("0.1d238", NULL);
1329     ok(almost_equal(d, 0.1e238L), "d = %lf\n", d);
1330     d = strtod("0.1D-4736", NULL);
1331     ok(almost_equal(d, 0.1e-4736L), "d = %lf\n", d);
1332
1333     errno = 0xdeadbeef;
1334     strtod(overflow, &end);
1335     ok(errno == ERANGE, "errno = %x\n", errno);
1336     ok(end == overflow+21, "incorrect end (%d)\n", (int)(end-overflow));
1337
1338     errno = 0xdeadbeef;
1339     strtod("-1d309", NULL);
1340     ok(errno == ERANGE, "errno = %x\n", errno);
1341 }
1342
1343 static void test_mbstowcs(void)
1344 {
1345     static const wchar_t wSimple[] = { 't','e','x','t',0 };
1346     static const wchar_t wHiragana[] = { 0x3042,0x3043,0 };
1347     static const char mSimple[] = "text";
1348     static const char mHiragana[] = { 0x82,0xa0,0x82,0xa1,0 };
1349
1350     const wchar_t *pwstr;
1351     wchar_t wOut[6];
1352     char mOut[6];
1353     size_t ret;
1354     int err;
1355
1356     wOut[4] = '!'; wOut[5] = '\0';
1357     mOut[4] = '!'; mOut[5] = '\0';
1358
1359     ret = mbstowcs(NULL, mSimple, 0);
1360     ok(ret == 4, "mbstowcs did not return 4\n");
1361
1362     ret = mbstowcs(wOut, mSimple, 4);
1363     ok(ret == 4, "mbstowcs did not return 4\n");
1364     ok(!memcmp(wOut, wSimple, 4*sizeof(wchar_t)), "wOut = %s\n", wine_dbgstr_w(wOut));
1365     ok(wOut[4] == '!', "wOut[4] != \'!\'\n");
1366
1367     ret = wcstombs(NULL, wSimple, 0);
1368     ok(ret == 4, "wcstombs did not return 4\n");
1369
1370     ret = wcstombs(mOut, wSimple, 6);
1371     ok(ret == 4, "wcstombs did not return 4\n");
1372     ok(!memcmp(mOut, mSimple, 5*sizeof(char)), "mOut = %s\n", mOut);
1373
1374     ret = wcstombs(mOut, wSimple, 2);
1375     ok(ret == 2, "wcstombs did not return 2\n");
1376     ok(!memcmp(mOut, mSimple, 5*sizeof(char)), "mOut = %s\n", mOut);
1377
1378     if(!setlocale(LC_ALL, "Japanese_Japan.932")) {
1379         win_skip("Japanese_Japan.932 locale not available\n");
1380         return;
1381     }
1382
1383     ret = mbstowcs(wOut, mHiragana, 6);
1384     ok(ret == 2, "mbstowcs did not return 2\n");
1385     ok(!memcmp(wOut, wHiragana, sizeof(wHiragana)), "wOut = %s\n", wine_dbgstr_w(wOut));
1386
1387     ret = wcstombs(mOut, wHiragana, 6);
1388     ok(ret == 4, "wcstombs did not return 4\n");
1389     ok(!memcmp(mOut, mHiragana, sizeof(mHiragana)), "mOut = %s\n", mOut);
1390
1391     if(!pmbstowcs_s || !pwcstombs_s) {
1392         setlocale(LC_ALL, "C");
1393         win_skip("mbstowcs_s or wcstombs_s not available\n");
1394         return;
1395     }
1396
1397     err = pmbstowcs_s(&ret, wOut, 6, mSimple, _TRUNCATE);
1398     ok(err == 0, "err = %d\n", err);
1399     ok(ret == 5, "mbstowcs_s did not return 5\n");
1400     ok(!memcmp(wOut, wSimple, sizeof(wSimple)), "wOut = %s\n", wine_dbgstr_w(wOut));
1401
1402     err = pmbstowcs_s(&ret, wOut, 6, mHiragana, _TRUNCATE);
1403     ok(err == 0, "err = %d\n", err);
1404     ok(ret == 3, "mbstowcs_s did not return 3\n");
1405     ok(!memcmp(wOut, wHiragana, sizeof(wHiragana)), "wOut = %s\n", wine_dbgstr_w(wOut));
1406
1407     err = pmbstowcs_s(&ret, NULL, 0, mHiragana, 1);
1408     ok(err == 0, "err = %d\n", err);
1409     ok(ret == 3, "mbstowcs_s did not return 3\n");
1410
1411     err = pwcstombs_s(&ret, mOut, 6, wSimple, _TRUNCATE);
1412     ok(err == 0, "err = %d\n", err);
1413     ok(ret == 5, "wcstombs_s did not return 5\n");
1414     ok(!memcmp(mOut, mSimple, sizeof(mSimple)), "mOut = %s\n", mOut);
1415
1416     err = pwcstombs_s(&ret, mOut, 6, wHiragana, _TRUNCATE);
1417     ok(err == 0, "err = %d\n", err);
1418     ok(ret == 5, "wcstombs_s did not return 5\n");
1419     ok(!memcmp(mOut, mHiragana, sizeof(mHiragana)), "mOut = %s\n", mOut);
1420
1421     err = pwcstombs_s(&ret, NULL, 0, wHiragana, 1);
1422     ok(err == 0, "err = %d\n", err);
1423     ok(ret == 5, "wcstombs_s did not return 5\n");
1424
1425     if(!pwcsrtombs) {
1426         setlocale(LC_ALL, "C");
1427         win_skip("wcsrtombs not available\n");
1428         return;
1429     }
1430
1431     pwstr = wSimple;
1432     err = -3;
1433     ret = pwcsrtombs(mOut, &pwstr, 4, &err);
1434     ok(ret == 4, "wcsrtombs did not return 4\n");
1435     ok(err == 0, "err = %d\n", err);
1436     ok(pwstr == wSimple+4, "pwstr = %p (wszSimple = %p)\n", pwstr, wSimple);
1437     ok(!memcmp(mOut, mSimple, ret), "mOut = %s\n", mOut);
1438
1439     pwstr = wSimple;
1440     ret = pwcsrtombs(mOut, &pwstr, 5, NULL);
1441     ok(ret == 4, "wcsrtombs did not return 4\n");
1442     ok(pwstr == NULL, "pwstr != NULL\n");
1443     ok(!memcmp(mOut, mSimple, sizeof(mSimple)), "mOut = %s\n", mOut);
1444
1445     setlocale(LC_ALL, "C");
1446 }
1447
1448 static void test_gcvt(void)
1449 {
1450     char buf[1024], *res;
1451     errno_t err;
1452
1453     if(!p_gcvt_s) {
1454         win_skip("Skipping _gcvt tests\n");
1455         return;
1456     }
1457
1458     errno = 0;
1459     res = _gcvt(1.2, -1, buf);
1460     ok(res == NULL, "res != NULL\n");
1461     ok(errno == ERANGE, "errno = %d\n", errno);
1462
1463     errno = 0;
1464     res = _gcvt(1.2, 5, NULL);
1465     ok(res == NULL, "res != NULL\n");
1466     ok(errno == EINVAL, "errno = %d\n", errno);
1467
1468     res = gcvt(1.2, 5, buf);
1469     ok(res == buf, "res != buf\n");
1470     ok(!strcmp(buf, "1.2"), "buf = %s\n", buf);
1471
1472     buf[0] = 'x';
1473     err = p_gcvt_s(buf, 5, 1.2, 10);
1474     ok(err == ERANGE, "err = %d\n", err);
1475     ok(buf[0] == '\0', "buf[0] = %c\n", buf[0]);
1476
1477     buf[0] = 'x';
1478     err = p_gcvt_s(buf, 4, 123456, 2);
1479     ok(err == ERANGE, "err = %d\n", err);
1480     ok(buf[0] == '\0', "buf[0] = %c\n", buf[0]);
1481 }
1482
1483 static void test__itoa_s(void)
1484 {
1485     errno_t ret;
1486     char buffer[33];
1487
1488     if (!p_itoa_s)
1489     {
1490         win_skip("Skipping _itoa_s tests\n");
1491         return;
1492     }
1493
1494     if (p_set_invalid_parameter_handler)
1495         ok(p_set_invalid_parameter_handler(test_invalid_parameter_handler) == NULL,
1496                 "Invalid parameter handler was already set\n");
1497
1498     errno = EBADF;
1499     ret = p_itoa_s(0, NULL, 0, 0);
1500     ok(ret == EINVAL, "Expected _itoa_s to return EINVAL, got %d\n", ret);
1501     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
1502
1503     memset(buffer, 'X', sizeof(buffer));
1504     errno = EBADF;
1505     ret = p_itoa_s(0, buffer, 0, 0);
1506     ok(ret == EINVAL, "Expected _itoa_s to return EINVAL, got %d\n", ret);
1507     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
1508     ok(buffer[0] == 'X', "Expected the output buffer to be untouched\n");
1509
1510     memset(buffer, 'X', sizeof(buffer));
1511     errno = EBADF;
1512     ret = p_itoa_s(0, buffer, sizeof(buffer), 0);
1513     ok(ret == EINVAL, "Expected _itoa_s to return EINVAL, got %d\n", ret);
1514     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
1515     ok(buffer[0] == '\0', "Expected the output buffer to be null terminated\n");
1516
1517     memset(buffer, 'X', sizeof(buffer));
1518     errno = EBADF;
1519     ret = p_itoa_s(0, buffer, sizeof(buffer), 64);
1520     ok(ret == EINVAL, "Expected _itoa_s to return EINVAL, got %d\n", ret);
1521     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
1522     ok(buffer[0] == '\0', "Expected the output buffer to be null terminated\n");
1523
1524     memset(buffer, 'X', sizeof(buffer));
1525     errno = EBADF;
1526     ret = p_itoa_s(12345678, buffer, 4, 10);
1527     ok(ret == ERANGE, "Expected _itoa_s to return ERANGE, got %d\n", ret);
1528     ok(errno == ERANGE, "Expected errno to be ERANGE, got %d\n", errno);
1529     ok(!memcmp(buffer, "\000765", 4),
1530        "Expected the output buffer to be null terminated with truncated output\n");
1531
1532     memset(buffer, 'X', sizeof(buffer));
1533     errno = EBADF;
1534     ret = p_itoa_s(12345678, buffer, 8, 10);
1535     ok(ret == ERANGE, "Expected _itoa_s to return ERANGE, got %d\n", ret);
1536     ok(errno == ERANGE, "Expected errno to be ERANGE, got %d\n", errno);
1537     ok(!memcmp(buffer, "\0007654321", 8),
1538        "Expected the output buffer to be null terminated with truncated output\n");
1539
1540     memset(buffer, 'X', sizeof(buffer));
1541     errno = EBADF;
1542     ret = p_itoa_s(-12345678, buffer, 9, 10);
1543     ok(ret == ERANGE, "Expected _itoa_s to return ERANGE, got %d\n", ret);
1544     ok(errno == ERANGE, "Expected errno to be ERANGE, got %d\n", errno);
1545     ok(!memcmp(buffer, "\00087654321", 9),
1546        "Expected the output buffer to be null terminated with truncated output\n");
1547
1548     ret = p_itoa_s(12345678, buffer, 9, 10);
1549     ok(ret == 0, "Expected _itoa_s to return 0, got %d\n", ret);
1550     ok(!strcmp(buffer, "12345678"),
1551        "Expected output buffer string to be \"12345678\", got \"%s\"\n",
1552        buffer);
1553
1554     ret = p_itoa_s(43690, buffer, sizeof(buffer), 2);
1555     ok(ret == 0, "Expected _itoa_s to return 0, got %d\n", ret);
1556     ok(!strcmp(buffer, "1010101010101010"),
1557        "Expected output buffer string to be \"1010101010101010\", got \"%s\"\n",
1558        buffer);
1559
1560     ret = p_itoa_s(1092009, buffer, sizeof(buffer), 36);
1561     ok(ret == 0, "Expected _itoa_s to return 0, got %d\n", ret);
1562     ok(!strcmp(buffer, "nell"),
1563        "Expected output buffer string to be \"nell\", got \"%s\"\n",
1564        buffer);
1565
1566     ret = p_itoa_s(5704, buffer, sizeof(buffer), 18);
1567     ok(ret == 0, "Expected _itoa_s to return 0, got %d\n", ret);
1568     ok(!strcmp(buffer, "hag"),
1569        "Expected output buffer string to be \"hag\", got \"%s\"\n",
1570        buffer);
1571
1572     ret = p_itoa_s(-12345678, buffer, sizeof(buffer), 10);
1573     ok(ret == 0, "Expected _itoa_s to return 0, got %d\n", ret);
1574     ok(!strcmp(buffer, "-12345678"),
1575        "Expected output buffer string to be \"-12345678\", got \"%s\"\n",
1576        buffer);
1577     if (p_set_invalid_parameter_handler)
1578         ok(p_set_invalid_parameter_handler(NULL) == test_invalid_parameter_handler,
1579                 "Cannot reset invalid parameter handler\n");
1580 }
1581
1582 static void test__strlwr_s(void)
1583 {
1584     errno_t ret;
1585     char buffer[20];
1586
1587     if (!p_strlwr_s)
1588     {
1589         win_skip("Skipping _strlwr_s tests\n");
1590         return;
1591     }
1592
1593     errno = EBADF;
1594     ret = p_strlwr_s(NULL, 0);
1595     ok(ret == EINVAL, "Expected _strlwr_s to return EINVAL, got %d\n", ret);
1596     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
1597
1598     errno = EBADF;
1599     ret = p_strlwr_s(NULL, sizeof(buffer));
1600     ok(ret == EINVAL, "Expected _strlwr_s to return EINVAL, got %d\n", ret);
1601     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
1602
1603     errno = EBADF;
1604     ret = p_strlwr_s(buffer, 0);
1605     ok(ret == EINVAL, "Expected _strlwr_s to return EINVAL, got %d\n", ret);
1606     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
1607
1608     strcpy(buffer, "GoRrIsTeR");
1609     errno = EBADF;
1610     ret = p_strlwr_s(buffer, 5);
1611     ok(ret == EINVAL, "Expected _strlwr_s to return EINVAL, got %d\n", ret);
1612     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
1613     ok(!memcmp(buffer, "\0oRrIsTeR", sizeof("\0oRrIsTeR")),
1614        "Expected the output buffer to be \"\\0oRrIsTeR\"\n");
1615
1616     strcpy(buffer, "GoRrIsTeR");
1617     errno = EBADF;
1618     ret = p_strlwr_s(buffer, sizeof("GoRrIsTeR") - 1);
1619     ok(ret == EINVAL, "Expected _strlwr_s to return EINVAL, got %d\n", ret);
1620     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
1621     ok(!memcmp(buffer, "\0oRrIsTeR", sizeof("\0oRrIsTeR")),
1622        "Expected the output buffer to be \"\\0oRrIsTeR\"\n");
1623
1624     strcpy(buffer, "GoRrIsTeR");
1625     ret = p_strlwr_s(buffer, sizeof("GoRrIsTeR"));
1626     ok(ret == 0, "Expected _strlwr_s to return 0, got %d\n", ret);
1627     ok(!strcmp(buffer, "gorrister"),
1628        "Expected the output buffer to be \"gorrister\", got \"%s\"\n",
1629        buffer);
1630
1631     memcpy(buffer, "GoRrIsTeR\0ELLEN", sizeof("GoRrIsTeR\0ELLEN"));
1632     ret = p_strlwr_s(buffer, sizeof(buffer));
1633     ok(ret == 0, "Expected _strlwr_s to return 0, got %d\n", ret);
1634     ok(!memcmp(buffer, "gorrister\0ELLEN", sizeof("gorrister\0ELLEN")),
1635        "Expected the output buffer to be \"gorrister\\0ELLEN\", got \"%s\"\n",
1636        buffer);
1637 }
1638
1639 static void test_wcsncat_s(void)
1640 {
1641     static wchar_t abcW[] = {'a','b','c',0};
1642     int ret;
1643     wchar_t dst[4];
1644     wchar_t src[4];
1645
1646     if (!p_wcsncat_s)
1647     {
1648         win_skip("skipping wcsncat_s tests\n");
1649         return;
1650     }
1651
1652     if (p_set_invalid_parameter_handler)
1653         ok(p_set_invalid_parameter_handler(test_invalid_parameter_handler) == NULL,
1654                 "Invalid parameter handler was already set\n");
1655
1656     memcpy(src, abcW, sizeof(abcW));
1657     dst[0] = 0;
1658     ret = p_wcsncat_s(NULL, 4, src, 4);
1659     ok(ret == EINVAL, "err = %d\n", ret);
1660     ret = p_wcsncat_s(dst, 0, src, 4);
1661     ok(ret == EINVAL, "err = %d\n", ret);
1662     ret = p_wcsncat_s(dst, 0, src, _TRUNCATE);
1663     ok(ret == EINVAL, "err = %d\n", ret);
1664     ret = p_wcsncat_s(dst, 4, NULL, 0);
1665     ok(ret == 0, "err = %d\n", ret);
1666
1667     dst[0] = 0;
1668     ret = p_wcsncat_s(dst, 2, src, 4);
1669     ok(ret == ERANGE, "err = %d\n", ret);
1670
1671     dst[0] = 0;
1672     ret = p_wcsncat_s(dst, 2, src, _TRUNCATE);
1673     ok(ret == STRUNCATE, "err = %d\n", ret);
1674     ok(dst[0] == 'a' && dst[1] == 0, "dst is %s\n", wine_dbgstr_w(dst));
1675
1676     memcpy(dst, abcW, sizeof(abcW));
1677     dst[3] = 'd';
1678     ret = p_wcsncat_s(dst, 4, src, 4);
1679     ok(ret == EINVAL, "err = %d\n", ret);
1680
1681     if (p_set_invalid_parameter_handler)
1682         ok(p_set_invalid_parameter_handler(NULL) == test_invalid_parameter_handler,
1683                 "Cannot reset invalid parameter handler\n");
1684 }
1685
1686 static void test__mbsnbcat_s(void)
1687 {
1688     unsigned char dest[16];
1689     const unsigned char first[] = "dinosaur";
1690     const unsigned char second[] = "duck";
1691     int ret;
1692
1693     if (!p_mbsnbcat_s)
1694     {
1695         win_skip("Skipping _mbsnbcat_s tests\n");
1696         return;
1697     }
1698
1699     /* Test invalid arguments. */
1700     ret = p_mbsnbcat_s(NULL, 0, NULL, 0);
1701     ok(ret == 0, "Expected _mbsnbcat_s to return 0, got %d\n", ret);
1702
1703     errno = EBADF;
1704     ret = p_mbsnbcat_s(NULL, 10, NULL, 0);
1705     ok(ret == EINVAL, "Expected _mbsnbcat_s to return EINVAL, got %d\n", ret);
1706     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
1707
1708     errno = EBADF;
1709     ret = p_mbsnbcat_s(NULL, 0, NULL, 10);
1710     ok(ret == EINVAL, "Expected _mbsnbcat_s to return EINVAL, got %d\n", ret);
1711     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
1712
1713     memset(dest, 'X', sizeof(dest));
1714     errno = EBADF;
1715     ret = p_mbsnbcat_s(dest, 0, NULL, 0);
1716     ok(ret == EINVAL, "Expected _mbsnbcat_s to return EINVAL, got %d\n", ret);
1717     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
1718     ok(dest[0] == 'X', "Expected the output buffer to be untouched\n");
1719
1720     memset(dest, 'X', sizeof(dest));
1721     errno = EBADF;
1722     ret = p_mbsnbcat_s(dest, 0, second, 0);
1723     ok(ret == EINVAL, "Expected _mbsnbcat_s to return EINVAL, got %d\n", ret);
1724     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
1725     ok(dest[0] == 'X', "Expected the output buffer to be untouched\n");
1726
1727     memset(dest, 'X', sizeof(dest));
1728     errno = EBADF;
1729     ret = p_mbsnbcat_s(dest, sizeof(dest), NULL, 0);
1730     ok(ret == EINVAL, "Expected _mbsnbcat_s to return EINVAL, got %d\n", ret);
1731     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
1732     ok(dest[0] == '\0', "Expected the output buffer to be null terminated\n");
1733
1734     memset(dest, 'X', sizeof(dest));
1735     errno = EBADF;
1736     ret = p_mbsnbcat_s(dest, sizeof(dest), NULL, 10);
1737     ok(ret == EINVAL, "Expected _mbsnbcat_s to return EINVAL, got %d\n", ret);
1738     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
1739     ok(dest[0] == '\0', "Expected the output buffer to be null terminated\n");
1740
1741     memset(dest, 'X', sizeof(dest));
1742     dest[0] = '\0';
1743     ret = p_mbsnbcat_s(dest, sizeof(dest), second, sizeof(second));
1744     ok(ret == 0, "Expected _mbsnbcat_s to return 0, got %d\n", ret);
1745     ok(!memcmp(dest, second, sizeof(second)),
1746        "Expected the output buffer string to be \"duck\"\n");
1747
1748     /* Test source truncation behavior. */
1749     memset(dest, 'X', sizeof(dest));
1750     memcpy(dest, first, sizeof(first));
1751     ret = p_mbsnbcat_s(dest, sizeof(dest), second, 0);
1752     ok(ret == 0, "Expected _mbsnbcat_s to return 0, got %d\n", ret);
1753     ok(!memcmp(dest, first, sizeof(first)),
1754        "Expected the output buffer string to be \"dinosaur\"\n");
1755
1756     memset(dest, 'X', sizeof(dest));
1757     memcpy(dest, first, sizeof(first));
1758     ret = p_mbsnbcat_s(dest, sizeof(dest), second, sizeof(second));
1759     ok(ret == 0, "Expected _mbsnbcat_s to return 0, got %d\n", ret);
1760     ok(!memcmp(dest, "dinosaurduck", sizeof("dinosaurduck")),
1761        "Expected the output buffer string to be \"dinosaurduck\"\n");
1762
1763     memset(dest, 'X', sizeof(dest));
1764     memcpy(dest, first, sizeof(first));
1765     ret = p_mbsnbcat_s(dest, sizeof(dest), second, sizeof(second) + 1);
1766     ok(ret == 0, "Expected _mbsnbcat_s to return 0, got %d\n", ret);
1767     ok(!memcmp(dest, "dinosaurduck", sizeof("dinosaurduck")),
1768        "Expected the output buffer string to be \"dinosaurduck\"\n");
1769
1770     memset(dest, 'X', sizeof(dest));
1771     memcpy(dest, first, sizeof(first));
1772     ret = p_mbsnbcat_s(dest, sizeof(dest), second, sizeof(second) - 1);
1773     ok(ret == 0, "Expected _mbsnbcat_s to return 0, got %d\n", ret);
1774     ok(!memcmp(dest, "dinosaurduck", sizeof("dinosaurduck")),
1775        "Expected the output buffer string to be \"dinosaurduck\"\n");
1776
1777     memset(dest, 'X', sizeof(dest));
1778     memcpy(dest, first, sizeof(first));
1779     ret = p_mbsnbcat_s(dest, sizeof(dest), second, sizeof(second) - 2);
1780     ok(ret == 0, "Expected _mbsnbcat_s to return 0, got %d\n", ret);
1781     ok(!memcmp(dest, "dinosaurduc", sizeof("dinosaurduc")),
1782        "Expected the output buffer string to be \"dinosaurduc\"\n");
1783
1784     /* Test destination truncation behavior. */
1785     memset(dest, 'X', sizeof(dest));
1786     memcpy(dest, first, sizeof(first));
1787     errno = EBADF;
1788     ret = p_mbsnbcat_s(dest, sizeof(first) - 1, second, sizeof(second));
1789     ok(ret == EINVAL, "Expected _mbsnbcat_s to return EINVAL, got %d\n", ret);
1790     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
1791     ok(!memcmp(dest, "\0inosaur", sizeof("\0inosaur") - 1),
1792        "Expected the output buffer string to be \"\\0inosaur\" without ending null terminator\n");
1793
1794     memset(dest, 'X', sizeof(dest));
1795     memcpy(dest, first, sizeof(first));
1796     errno = EBADF;
1797     ret = p_mbsnbcat_s(dest, sizeof(first), second, sizeof(second));
1798     ok(ret == ERANGE, "Expected _mbsnbcat_s to return ERANGE, got %d\n", ret);
1799     ok(errno == ERANGE, "Expected errno to be ERANGE, got %d\n", errno);
1800     ok(!memcmp(dest, "\0inosaurd", sizeof("\0inosaurd") - 1),
1801        "Expected the output buffer string to be \"\\0inosaurd\" without ending null terminator\n");
1802
1803     memset(dest, 'X', sizeof(dest));
1804     memcpy(dest, first, sizeof(first));
1805     errno = EBADF;
1806     ret = p_mbsnbcat_s(dest, sizeof(first) + 1, second, sizeof(second));
1807     ok(ret == ERANGE, "Expected _mbsnbcat_s to return ERANGE, got %d\n", ret);
1808     ok(errno == ERANGE, "Expected errno to be ERANGE, got %d\n", errno);
1809     ok(!memcmp(dest, "\0inosaurdu", sizeof("\0inosaurdu") - 1),
1810        "Expected the output buffer string to be \"\\0inosaurdu\" without ending null terminator\n");
1811 }
1812
1813 static void test__mbsupr_s(void)
1814 {
1815     errno_t ret;
1816     unsigned char buffer[20];
1817
1818     if (!p_mbsupr_s)
1819     {
1820         win_skip("Skipping _mbsupr_s tests\n");
1821         return;
1822     }
1823
1824     errno = EBADF;
1825     ret = p_mbsupr_s(NULL, 0);
1826     ok(ret == 0, "Expected _mbsupr_s to return 0, got %d\n", ret);
1827
1828     errno = EBADF;
1829     ret = p_mbsupr_s(NULL, sizeof(buffer));
1830     ok(ret == EINVAL, "Expected _mbsupr_s to return EINVAL, got %d\n", ret);
1831     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
1832
1833     errno = EBADF;
1834     ret = p_mbsupr_s(buffer, 0);
1835     ok(ret == EINVAL, "Expected _mbsupr_s to return EINVAL, got %d\n", ret);
1836     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
1837
1838     memcpy(buffer, "abcdefgh", sizeof("abcdefgh"));
1839     errno = EBADF;
1840     ret = p_mbsupr_s(buffer, sizeof("abcdefgh"));
1841     ok(ret == 0, "Expected _mbsupr_s to return 0, got %d\n", ret);
1842     ok(!memcmp(buffer, "ABCDEFGH", sizeof("ABCDEFGH")),
1843        "Expected the output buffer to be \"ABCDEFGH\", got \"%s\"\n",
1844        buffer);
1845
1846     memcpy(buffer, "abcdefgh", sizeof("abcdefgh"));
1847     errno = EBADF;
1848     ret = p_mbsupr_s(buffer, sizeof(buffer));
1849     ok(ret == 0, "Expected _mbsupr_s to return 0, got %d\n", ret);
1850     ok(!memcmp(buffer, "ABCDEFGH", sizeof("ABCDEFGH")),
1851        "Expected the output buffer to be \"ABCDEFGH\", got \"%s\"\n",
1852        buffer);
1853
1854     memcpy(buffer, "abcdefgh", sizeof("abcdefgh"));
1855     errno = EBADF;
1856     ret = p_mbsupr_s(buffer, 4);
1857     ok(ret == EINVAL, "Expected _mbsupr_s to return EINVAL, got %d\n", ret);
1858     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
1859
1860     memcpy(buffer, "abcdefgh\0ijklmnop", sizeof("abcdefgh\0ijklmnop"));
1861     errno = EBADF;
1862     ret = p_mbsupr_s(buffer, sizeof(buffer));
1863     ok(ret == 0, "Expected _mbsupr_s to return 0, got %d\n", ret);
1864     ok(!memcmp(buffer, "ABCDEFGH\0ijklmnop", sizeof("ABCDEFGH\0ijklmnop")),
1865        "Expected the output buffer to be \"ABCDEFGH\\0ijklmnop\", got \"%s\"\n",
1866        buffer);
1867
1868 }
1869
1870 static void test__mbslwr_s(void)
1871 {
1872     errno_t ret;
1873     unsigned char buffer[20];
1874
1875     if (!p_mbslwr_s)
1876     {
1877         win_skip("Skipping _mbslwr_s tests\n");
1878         return;
1879     }
1880
1881     errno = EBADF;
1882     ret = p_mbslwr_s(NULL, 0);
1883     ok(ret == 0, "Expected _mbslwr_s to return 0, got %d\n", ret);
1884
1885     errno = EBADF;
1886     ret = p_mbslwr_s(NULL, sizeof(buffer));
1887     ok(ret == EINVAL, "Expected _mbslwr_s to return EINVAL, got %d\n", ret);
1888     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
1889
1890     errno = EBADF;
1891     ret = p_mbslwr_s(buffer, 0);
1892     ok(ret == EINVAL, "Expected _mbslwr_s to return EINVAL, got %d\n", ret);
1893     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
1894
1895     memcpy(buffer, "ABCDEFGH", sizeof("ABCDEFGH"));
1896     errno = EBADF;
1897     ret = p_mbslwr_s(buffer, sizeof("ABCDEFGH"));
1898     ok(ret == 0, "Expected _mbslwr_s to return 0, got %d\n", ret);
1899     ok(!memcmp(buffer, "abcdefgh", sizeof("abcdefgh")),
1900        "Expected the output buffer to be \"abcdefgh\", got \"%s\"\n",
1901        buffer);
1902
1903     memcpy(buffer, "ABCDEFGH", sizeof("ABCDEFGH"));
1904     errno = EBADF;
1905     ret = p_mbslwr_s(buffer, sizeof(buffer));
1906     ok(ret == 0, "Expected _mbslwr_s to return 0, got %d\n", ret);
1907     ok(!memcmp(buffer, "abcdefgh", sizeof("abcdefgh")),
1908        "Expected the output buffer to be \"abcdefgh\", got \"%s\"\n",
1909        buffer);
1910
1911     memcpy(buffer, "ABCDEFGH", sizeof("ABCDEFGH"));
1912     errno = EBADF;
1913     ret = p_mbslwr_s(buffer, 4);
1914     ok(ret == EINVAL, "Expected _mbslwr_s to return EINVAL, got %d\n", ret);
1915     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
1916
1917     memcpy(buffer, "ABCDEFGH\0IJKLMNOP", sizeof("ABCDEFGH\0IJKLMNOP"));
1918     errno = EBADF;
1919     ret = p_mbslwr_s(buffer, sizeof(buffer));
1920     ok(ret == 0, "Expected _mbslwr_s to return 0, got %d\n", ret);
1921     ok(!memcmp(buffer, "abcdefgh\0IJKLMNOP", sizeof("abcdefgh\0IJKLMNOP")),
1922        "Expected the output buffer to be \"abcdefgh\\0IJKLMNOP\", got \"%s\"\n",
1923        buffer);
1924 }
1925
1926 static void test__ultoa_s(void)
1927 {
1928     errno_t ret;
1929     char buffer[33];
1930
1931     if (!p_ultoa_s)
1932     {
1933         win_skip("Skipping _ultoa_s tests\n");
1934         return;
1935     }
1936
1937     errno = EBADF;
1938     ret = p_ultoa_s(0, NULL, 0, 0);
1939     ok(ret == EINVAL, "Expected _ultoa_s to return EINVAL, got %d\n", ret);
1940     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
1941
1942     memset(buffer, 'X', sizeof(buffer));
1943     errno = EBADF;
1944     ret = p_ultoa_s(0, buffer, 0, 0);
1945     ok(ret == EINVAL, "Expected _ultoa_s to return EINVAL, got %d\n", ret);
1946     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
1947     ok(buffer[0] == 'X', "Expected the output buffer to be untouched\n");
1948
1949     memset(buffer, 'X', sizeof(buffer));
1950     errno = EBADF;
1951     ret = p_ultoa_s(0, buffer, sizeof(buffer), 0);
1952     ok(ret == EINVAL, "Expected _ultoa_s to return EINVAL, got %d\n", ret);
1953     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
1954     ok(buffer[0] == '\0', "Expected the output buffer to be null terminated\n");
1955
1956     memset(buffer, 'X', sizeof(buffer));
1957     errno = EBADF;
1958     ret = p_ultoa_s(0, buffer, sizeof(buffer), 64);
1959     ok(ret == EINVAL, "Expected _ultoa_s to return EINVAL, got %d\n", ret);
1960     ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
1961     ok(buffer[0] == '\0', "Expected the output buffer to be null terminated\n");
1962
1963     memset(buffer, 'X', sizeof(buffer));
1964     errno = EBADF;
1965     ret = p_ultoa_s(12345678, buffer, 4, 10);
1966     ok(ret == ERANGE, "Expected _ultoa_s to return ERANGE, got %d\n", ret);
1967     ok(errno == ERANGE, "Expected errno to be ERANGE, got %d\n", errno);
1968     ok(!memcmp(buffer, "\000765", 4),
1969        "Expected the output buffer to be null terminated with truncated output\n");
1970
1971     memset(buffer, 'X', sizeof(buffer));
1972     errno = EBADF;
1973     ret = p_ultoa_s(12345678, buffer, 8, 10);
1974     ok(ret == ERANGE, "Expected _ultoa_s to return ERANGE, got %d\n", ret);
1975     ok(errno == ERANGE, "Expected errno to be ERANGE, got %d\n", errno);
1976     ok(!memcmp(buffer, "\0007654321", 8),
1977        "Expected the output buffer to be null terminated with truncated output\n");
1978
1979     ret = p_ultoa_s(12345678, buffer, 9, 10);
1980     ok(ret == 0, "Expected _ultoa_s to return 0, got %d\n", ret);
1981     ok(!strcmp(buffer, "12345678"),
1982        "Expected output buffer string to be \"12345678\", got \"%s\"\n",
1983        buffer);
1984
1985     ret = p_ultoa_s(43690, buffer, sizeof(buffer), 2);
1986     ok(ret == 0, "Expected _ultoa_s to return 0, got %d\n", ret);
1987     ok(!strcmp(buffer, "1010101010101010"),
1988        "Expected output buffer string to be \"1010101010101010\", got \"%s\"\n",
1989        buffer);
1990
1991     ret = p_ultoa_s(1092009, buffer, sizeof(buffer), 36);
1992     ok(ret == 0, "Expected _ultoa_s to return 0, got %d\n", ret);
1993     ok(!strcmp(buffer, "nell"),
1994        "Expected output buffer string to be \"nell\", got \"%s\"\n",
1995        buffer);
1996
1997     ret = p_ultoa_s(5704, buffer, sizeof(buffer), 18);
1998     ok(ret == 0, "Expected _ultoa_s to return 0, got %d\n", ret);
1999     ok(!strcmp(buffer, "hag"),
2000        "Expected output buffer string to be \"hag\", got \"%s\"\n",
2001        buffer);
2002 }
2003
2004 static void test_wctob(void)
2005 {
2006     int ret;
2007
2008     if(!p_wctob || !setlocale(LC_ALL, "chinese-traditional")) {
2009         win_skip("Skipping wctob tests\n");
2010         return;
2011     }
2012
2013     ret = p_wctob(0x8141);
2014     ok(ret == EOF, "ret = %x\n", ret);
2015
2016     ret = p_wctob(0x81);
2017     ok(ret == EOF, "ret = %x\n", ret);
2018
2019     ret = p_wctob(0xe0);
2020     ok(ret == 0x61, "ret = %x\n", ret);
2021
2022     _setmbcp(1250);
2023     ret = p_wctob(0x81);
2024     ok(ret == EOF, "ret = %x\n", ret);
2025
2026     setlocale(LC_ALL, "C");
2027     ret = p_wctob(0x8141);
2028     ok(ret == EOF, "ret = %x\n", ret);
2029
2030     ret = p_wctob(0x81);
2031     ok(ret == (int)(char)0x81, "ret = %x\n", ret);
2032
2033     ret = p_wctob(0x9f);
2034     ok(ret == (int)(char)0x9f, "ret = %x\n", ret);
2035
2036     ret = p_wctob(0xe0);
2037     ok(ret == (int)(char)0xe0, "ret = %x\n", ret);
2038 }
2039
2040 static void test_tolower(void)
2041 {
2042     int ret;
2043
2044     ret = p_tolower(0x41);
2045     ok(ret == 0x61, "ret = %x\n", ret);
2046
2047     ret = p_tolower(0xF4);
2048     ok(ret == 0xF4, "ret = %x\n", ret);
2049
2050     ret = p_tolower((char)0xF4);
2051     ok(ret==0xF4/*Vista+*/ || ret==(char)0xF4, "ret = %x\n", ret);
2052
2053     /* is it using different locale (CP_ACP) for negative values?? */
2054     /* current implementation matches msvcr90 behaviour */
2055     ret = p_tolower((char)0xD0);
2056     todo_wine ok(ret==0xF0/*Vista+*/ || ret==(char)0xD0, "ret = %x\n", ret);
2057
2058     ret = p_tolower(0xD0);
2059     ok(ret == 0xD0, "ret = %x\n", ret);
2060
2061     if(!setlocale(LC_ALL, "us")) {
2062         win_skip("skipping tolower tests that depends on locale\n");
2063         return;
2064     }
2065
2066     ret = p_tolower((char)0xD0);
2067     ok(ret == 0xF0, "ret = %x\n", ret);
2068
2069     ret = p_tolower(0xD0);
2070     ok(ret == 0xF0, "ret = %x\n", ret);
2071
2072     setlocale(LC_ALL, "C");
2073 }
2074
2075 START_TEST(string)
2076 {
2077     char mem[100];
2078     static const char xilstring[]="c:/xilinx";
2079     int nLen;
2080
2081     hMsvcrt = GetModuleHandleA("msvcrt.dll");
2082     if (!hMsvcrt)
2083         hMsvcrt = GetModuleHandleA("msvcrtd.dll");
2084     ok(hMsvcrt != 0, "GetModuleHandleA failed\n");
2085     SET(pmemcpy,"memcpy");
2086     SET(pmemcmp,"memcmp");
2087     SET(p_mbctype,"_mbctype");
2088     SET(p__mb_cur_max,"__mb_cur_max");
2089     pstrcpy_s = (void *)GetProcAddress( hMsvcrt,"strcpy_s" );
2090     pstrcat_s = (void *)GetProcAddress( hMsvcrt,"strcat_s" );
2091     p_mbsnbcat_s = (void *)GetProcAddress( hMsvcrt,"_mbsnbcat_s" );
2092     p_mbsnbcpy_s = (void *)GetProcAddress( hMsvcrt,"_mbsnbcpy_s" );
2093     p_wcscpy_s = (void *)GetProcAddress( hMsvcrt,"wcscpy_s" );
2094     p_wcsncpy_s = (void *)GetProcAddress( hMsvcrt,"wcsncpy_s" );
2095     p_wcsncat_s = (void *)GetProcAddress( hMsvcrt,"wcsncat_s" );
2096     p_wcsupr_s = (void *)GetProcAddress( hMsvcrt,"_wcsupr_s" );
2097     p_strnlen = (void *)GetProcAddress( hMsvcrt,"strnlen" );
2098     p_strtoi64 = (void *)GetProcAddress(hMsvcrt, "_strtoi64");
2099     p_strtoui64 = (void *)GetProcAddress(hMsvcrt, "_strtoui64");
2100     pmbstowcs_s = (void *)GetProcAddress(hMsvcrt, "mbstowcs_s");
2101     pwcstombs_s = (void *)GetProcAddress(hMsvcrt, "wcstombs_s");
2102     pwcsrtombs = (void *)GetProcAddress(hMsvcrt, "wcsrtombs");
2103     p_gcvt_s = (void *)GetProcAddress(hMsvcrt, "_gcvt_s");
2104     p_itoa_s = (void *)GetProcAddress(hMsvcrt, "_itoa_s");
2105     p_strlwr_s = (void *)GetProcAddress(hMsvcrt, "_strlwr_s");
2106     p_ultoa_s = (void *)GetProcAddress(hMsvcrt, "_ultoa_s");
2107     p_set_invalid_parameter_handler = (void *) GetProcAddress(hMsvcrt, "_set_invalid_parameter_handler");
2108     p_wcslwr_s = (void*)GetProcAddress(hMsvcrt, "_wcslwr_s");
2109     p_mbsupr_s = (void*)GetProcAddress(hMsvcrt, "_mbsupr_s");
2110     p_mbslwr_s = (void*)GetProcAddress(hMsvcrt, "_mbslwr_s");
2111     p_wctob = (void*)GetProcAddress(hMsvcrt, "wctob");
2112     p_tolower = (void*)GetProcAddress(hMsvcrt, "tolower");
2113
2114     /* MSVCRT memcpy behaves like memmove for overlapping moves,
2115        MFC42 CString::Insert seems to rely on that behaviour */
2116     strcpy(mem,xilstring);
2117     nLen=strlen(xilstring);
2118     pmemcpy(mem+5, mem,nLen+1);
2119     ok(pmemcmp(mem+5,xilstring, nLen) == 0,
2120        "Got result %s\n",mem+5);
2121
2122     /* Test _swab function */
2123     test_swab();
2124
2125     /* Test ismbblead*/
2126     test_mbcp();
2127    /* test _mbsspn */
2128     test_mbsspn();
2129     test_mbsspnp();
2130    /* test _strdup */
2131     test_strdup();
2132     test_strcpy_s();
2133     test_strcat_s();
2134     test__mbsnbcpy_s();
2135     test_mbcjisjms();
2136     test_mbcjmsjis();
2137     test_mbctombb();
2138     test_ismbclegal();
2139     test_strtok();
2140     test_wcscpy_s();
2141     test__wcsupr_s();
2142     test_strtol();
2143     test_strnlen();
2144     test__strtoi64();
2145     test__strtod();
2146     test_mbstowcs();
2147     test_gcvt();
2148     test__itoa_s();
2149     test__strlwr_s();
2150     test_wcsncat_s();
2151     test__mbsnbcat_s();
2152     test__ultoa_s();
2153     test__wcslwr_s();
2154     test__mbsupr_s();
2155     test__mbslwr_s();
2156     test_wctob();
2157     test_tolower();
2158 }