msvcrt/tests: Add additional tests for atof / strtod functions.
[wine.git] / dlls / msvcrt / tests / string.c
blobe8cafc803da4d5732b21d0a88c3a6883beb7ec68
1 /*
2 * Unit test suite for string functions.
4 * Copyright 2004 Uwe Bonnes
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.
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.
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
21 #include "wine/test.h"
22 #include <string.h>
23 #include <mbstring.h>
24 #include <wchar.h>
25 #include <stdlib.h>
26 #include <stdio.h>
27 #include <mbctype.h>
28 #include <locale.h>
29 #include <errno.h>
30 #include <limits.h>
31 #include <math.h>
33 /* make it use a definition from string.h */
34 #undef strncpy
35 #include "winbase.h"
36 #include "winnls.h"
38 static char *buf_to_string(const unsigned char *bin, int len, int nr)
40 static char buf[2][1024];
41 char *w = buf[nr];
42 int i;
44 for (i = 0; i < len; i++)
46 sprintf(w, "%02x ", (unsigned char)bin[i]);
47 w += strlen(w);
49 return buf[nr];
52 #define expect_eq(expr, value, type, format) { type ret = (expr); ok((value) == ret, #expr " expected " format " got " format "\n", value, ret); }
53 #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)); }
55 static void* (__cdecl *pmemcpy)(void *, const void *, size_t n);
56 static int (__cdecl *p_memcpy_s)(void *, size_t, const void *, size_t);
57 static int (__cdecl *p_memmove_s)(void *, size_t, const void *, size_t);
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__mbscpy_s)(unsigned char*, size_t, const unsigned char*);
64 static int (__cdecl *p_wcscpy_s)(wchar_t *wcDest, size_t size, const wchar_t *wcSrc);
65 static int (__cdecl *p_wcsncpy_s)(wchar_t *wcDest, size_t size, const wchar_t *wcSrc, size_t count);
66 static int (__cdecl *p_wcsncat_s)(wchar_t *dst, size_t elem, const wchar_t *src, size_t count);
67 static int (__cdecl *p_wcsupr_s)(wchar_t *str, size_t size);
68 static size_t (__cdecl *p_strnlen)(const char *, size_t);
69 static __int64 (__cdecl *p_strtoi64)(const char *, char **, int);
70 static unsigned __int64 (__cdecl *p_strtoui64)(const char *, char **, int);
71 static __int64 (__cdecl *p_wcstoi64)(const wchar_t *, wchar_t **, int);
72 static unsigned __int64 (__cdecl *p_wcstoui64)(const wchar_t *, wchar_t **, int);
73 static int (__cdecl *pwcstombs_s)(size_t*,char*,size_t,const wchar_t*,size_t);
74 static int (__cdecl *pmbstowcs_s)(size_t*,wchar_t*,size_t,const char*,size_t);
75 static size_t (__cdecl *p_mbsrtowcs)(wchar_t*, const char**, size_t, mbstate_t*);
76 static size_t (__cdecl *pwcsrtombs)(char*, const wchar_t**, size_t, int*);
77 static errno_t (__cdecl *p_gcvt_s)(char*,size_t,double,int);
78 static errno_t (__cdecl *p_itoa_s)(int,char*,size_t,int);
79 static errno_t (__cdecl *p_strlwr_s)(char*,size_t);
80 static errno_t (__cdecl *p_ultoa_s)(__msvcrt_ulong,char*,size_t,int);
81 static int *p__mb_cur_max;
82 static unsigned char *p_mbctype;
83 static int (__cdecl *p_wcslwr_s)(wchar_t*,size_t);
84 static errno_t (__cdecl *p_mbsupr_s)(unsigned char *str, size_t numberOfElements);
85 static errno_t (__cdecl *p_mbslwr_s)(unsigned char *str, size_t numberOfElements);
86 static int (__cdecl *p_wctob)(wint_t);
87 static size_t (__cdecl *p_wcrtomb)(char*, wchar_t, mbstate_t*);
88 static int (__cdecl *p_tolower)(int);
89 static size_t (__cdecl *p_mbrlen)(const char*, size_t, mbstate_t*);
90 static size_t (__cdecl *p_mbrtowc)(wchar_t*, const char*, size_t, mbstate_t*);
91 static int (__cdecl *p__atodbl_l)(_CRT_DOUBLE*,char*,_locale_t);
92 static double (__cdecl *p__atof_l)(const char*,_locale_t);
93 static double (__cdecl *p__strtod_l)(const char *,char**,_locale_t);
94 static int (__cdecl *p__strnset_s)(char*,size_t,int,size_t);
95 static int (__cdecl *p__wcsset_s)(wchar_t*,size_t,wchar_t);
97 #define SETNOFAIL(x,y) x = (void*)GetProcAddress(hMsvcrt,y)
98 #define SET(x,y) SETNOFAIL(x,y); ok(x != NULL, "Export '%s' not found\n", y)
100 static HMODULE hMsvcrt;
102 static void test_swab( void ) {
103 char original[] = "BADCFEHGJILKNMPORQTSVUXWZY@#";
104 char expected1[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ@#";
105 char expected2[] = "ABCDEFGHIJKLMNOPQRSTUVWX$";
106 char expected3[] = "$";
108 char from[30];
109 char to[30];
111 int testsize;
113 /* Test 1 - normal even case */
114 memset(to,'$', sizeof(to));
115 memset(from,'@', sizeof(from));
116 testsize = 26;
117 memcpy(from, original, testsize);
118 _swab( from, to, testsize );
119 ok(memcmp(to,expected1,testsize) == 0, "Testing even size %d returned '%*.*s'\n", testsize, testsize, testsize, to);
121 /* Test 2 - uneven case */
122 memset(to,'$', sizeof(to));
123 memset(from,'@', sizeof(from));
124 testsize = 25;
125 memcpy(from, original, testsize);
126 _swab( from, to, testsize );
127 ok(memcmp(to,expected2,testsize) == 0, "Testing odd size %d returned '%*.*s'\n", testsize, testsize, testsize, to);
129 /* Test 3 - from = to */
130 memset(to,'$', sizeof(to));
131 memset(from,'@', sizeof(from));
132 testsize = 26;
133 memcpy(to, original, testsize);
134 _swab( to, to, testsize );
135 ok(memcmp(to,expected1,testsize) == 0, "Testing overlapped size %d returned '%*.*s'\n", testsize, testsize, testsize, to);
137 /* Test 4 - 1 bytes */
138 memset(to,'$', sizeof(to));
139 memset(from,'@', sizeof(from));
140 testsize = 1;
141 memcpy(from, original, testsize);
142 _swab( from, to, testsize );
143 ok(memcmp(to,expected3,testsize) == 0, "Testing small size %d returned '%*.*s'\n", testsize, testsize, testsize, to);
146 #if 0 /* use this to generate more tests */
148 static void test_codepage(int cp)
150 int i;
151 int prev;
152 int count = 1;
154 ok(_setmbcp(cp) == 0, "Couldn't set mbcp\n");
156 prev = p_mbctype[0];
157 printf("static int result_cp_%d_mbctype[] = { ", cp);
158 for (i = 1; i < 257; i++)
160 if (p_mbctype[i] != prev)
162 printf("0x%x,%d, ", prev, count);
163 prev = p_mbctype[i];
164 count = 1;
166 else
167 count++;
169 printf("0x%x,%d };\n", prev, count);
172 #else
174 /* RLE-encoded mbctype tables for given codepages */
175 static int result_cp_932_mbctype[] = { 0x0,65, 0x8,1, 0x18,26, 0x8,6, 0x28,26, 0x8,4,
176 0x0,1, 0x8,1, 0xc,31, 0x8,1, 0xa,5, 0x9,58, 0xc,29, 0,3 };
177 static int result_cp_936_mbctype[] = { 0x0,65, 0x8,1, 0x18,26, 0x8,6, 0x28,26, 0x8,6,
178 0xc,126, 0,1 };
179 static int result_cp_949_mbctype[] = { 0x0,66, 0x18,26, 0x8,6, 0x28,26, 0x8,6, 0xc,126,
180 0,1 };
181 static int result_cp_950_mbctype[] = { 0x0,65, 0x8,1, 0x18,26, 0x8,6, 0x28,26, 0x8,4,
182 0x0,2, 0x4,32, 0xc,94, 0,1 };
184 static void test_cp_table(int cp, int *result)
186 int i;
187 int count = 0;
188 int curr = 0;
189 _setmbcp(cp);
190 for (i = 0; i < 256; i++)
192 if (count == 0)
194 curr = result[0];
195 count = result[1];
196 result += 2;
198 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);
199 count--;
203 #define test_codepage(num) test_cp_table(num, result_cp_##num##_mbctype);
205 #endif
207 static void test_mbcp(void)
209 int mb_orig_max = *p__mb_cur_max;
210 int curr_mbcp = _getmbcp();
211 unsigned char *mbstring = (unsigned char *)"\xb0\xb1\xb2 \xb3\xb4 \xb5"; /* incorrect string */
212 unsigned char *mbstring2 = (unsigned char *)"\xb0\xb1\xb2\xb3Q\xb4\xb5"; /* correct string */
213 unsigned char *mbsonlylead = (unsigned char *)"\xb0\0\xb1\xb2 \xb3";
214 unsigned char buf[16];
215 int step;
216 CPINFO cp_info;
218 /* _mbtype tests */
220 /* An SBCS codepage test. The ctype of characters on e.g. CP1252 or CP1250 differs slightly
221 * between versions of Windows. Also Windows 9x seems to ignore the codepage and always uses
222 * CP1252 (or the ACP?) so we test only a few ASCII characters */
223 _setmbcp(1252);
224 expect_eq(p_mbctype[10], 0, char, "%x");
225 expect_eq(p_mbctype[50], 0, char, "%x");
226 expect_eq(p_mbctype[66], _SBUP, char, "%x");
227 expect_eq(p_mbctype[100], _SBLOW, char, "%x");
228 expect_eq(p_mbctype[128], 0, char, "%x");
229 _setmbcp(1250);
230 expect_eq(p_mbctype[10], 0, char, "%x");
231 expect_eq(p_mbctype[50], 0, char, "%x");
232 expect_eq(p_mbctype[66], _SBUP, char, "%x");
233 expect_eq(p_mbctype[100], _SBLOW, char, "%x");
234 expect_eq(p_mbctype[128], 0, char, "%x");
236 /* double byte code pages */
237 test_codepage(932);
238 test_codepage(936);
239 test_codepage(949);
240 test_codepage(950);
242 _setmbcp(936);
243 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);
244 ok(_ismbblead('\354'), "\354 should be a lead byte\n");
245 ok(_ismbblead(' ') == FALSE, "' ' should not be a lead byte\n");
246 ok(_ismbblead(0x1234b0), "0x1234b0 should not be a lead byte\n");
247 ok(_ismbblead(0x123420) == FALSE, "0x123420 should not be a lead byte\n");
248 ok(_ismbbtrail('\xb0'), "\xa0 should be a trail byte\n");
249 ok(_ismbbtrail(' ') == FALSE, "' ' should not be a trail byte\n");
251 /* _ismbslead */
252 expect_eq(_ismbslead(mbstring, &mbstring[0]), -1, int, "%d");
253 expect_eq(_ismbslead(mbstring, &mbstring[1]), FALSE, int, "%d");
254 expect_eq(_ismbslead(mbstring, &mbstring[2]), -1, int, "%d");
255 expect_eq(_ismbslead(mbstring, &mbstring[3]), FALSE, int, "%d");
256 expect_eq(_ismbslead(mbstring, &mbstring[4]), -1, int, "%d");
257 expect_eq(_ismbslead(mbstring, &mbstring[5]), FALSE, int, "%d");
258 expect_eq(_ismbslead(mbstring, &mbstring[6]), FALSE, int, "%d");
259 expect_eq(_ismbslead(mbstring, &mbstring[7]), -1, int, "%d");
260 expect_eq(_ismbslead(mbstring, &mbstring[8]), FALSE, int, "%d");
262 expect_eq(_ismbslead(mbsonlylead, &mbsonlylead[0]), -1, int, "%d");
263 expect_eq(_ismbslead(mbsonlylead, &mbsonlylead[1]), FALSE, int, "%d");
264 expect_eq(_ismbslead(mbsonlylead, &mbsonlylead[2]), FALSE, int, "%d");
265 expect_eq(_ismbslead(mbsonlylead, &mbsonlylead[5]), FALSE, int, "%d");
267 /* _ismbstrail */
268 expect_eq(_ismbstrail(mbstring, &mbstring[0]), FALSE, int, "%d");
269 expect_eq(_ismbstrail(mbstring, &mbstring[1]), -1, int, "%d");
270 expect_eq(_ismbstrail(mbstring, &mbstring[2]), FALSE, int, "%d");
271 expect_eq(_ismbstrail(mbstring, &mbstring[3]), -1, int, "%d");
272 expect_eq(_ismbstrail(mbstring, &mbstring[4]), FALSE, int, "%d");
273 expect_eq(_ismbstrail(mbstring, &mbstring[5]), -1, int, "%d");
274 expect_eq(_ismbstrail(mbstring, &mbstring[6]), FALSE, int, "%d");
275 expect_eq(_ismbstrail(mbstring, &mbstring[7]), FALSE, int, "%d");
276 expect_eq(_ismbstrail(mbstring, &mbstring[8]), -1, int, "%d");
278 expect_eq(_ismbstrail(mbsonlylead, &mbsonlylead[0]), FALSE, int, "%d");
279 expect_eq(_ismbstrail(mbsonlylead, &mbsonlylead[1]), -1, int, "%d");
280 expect_eq(_ismbstrail(mbsonlylead, &mbsonlylead[2]), FALSE, int, "%d");
281 expect_eq(_ismbstrail(mbsonlylead, &mbsonlylead[3]), FALSE, int, "%d");
282 expect_eq(_ismbstrail(mbsonlylead, &mbsonlylead[4]), FALSE, int, "%d");
283 expect_eq(_ismbstrail(mbsonlylead, &mbsonlylead[5]), FALSE, int, "%d");
285 /* _mbsbtype */
286 expect_eq(_mbsbtype(mbstring, 0), _MBC_LEAD, int, "%d");
287 expect_eq(_mbsbtype(mbstring, 1), _MBC_TRAIL, int, "%d");
288 expect_eq(_mbsbtype(mbstring, 2), _MBC_LEAD, int, "%d");
289 expect_eq(_mbsbtype(mbstring, 3), _MBC_ILLEGAL, int, "%d");
290 expect_eq(_mbsbtype(mbstring, 4), _MBC_LEAD, int, "%d");
291 expect_eq(_mbsbtype(mbstring, 5), _MBC_TRAIL, int, "%d");
292 expect_eq(_mbsbtype(mbstring, 6), _MBC_SINGLE, int, "%d");
293 expect_eq(_mbsbtype(mbstring, 7), _MBC_LEAD, int, "%d");
294 expect_eq(_mbsbtype(mbstring, 8), _MBC_ILLEGAL, int, "%d");
296 expect_eq(_mbsbtype(mbsonlylead, 0), _MBC_LEAD, int, "%d");
297 expect_eq(_mbsbtype(mbsonlylead, 1), _MBC_ILLEGAL, int, "%d");
298 expect_eq(_mbsbtype(mbsonlylead, 2), _MBC_ILLEGAL, int, "%d");
299 expect_eq(_mbsbtype(mbsonlylead, 3), _MBC_ILLEGAL, int, "%d");
300 expect_eq(_mbsbtype(mbsonlylead, 4), _MBC_ILLEGAL, int, "%d");
301 expect_eq(_mbsbtype(mbsonlylead, 5), _MBC_ILLEGAL, int, "%d");
303 /* _mbsnextc */
304 expect_eq(_mbsnextc(mbstring), 0xb0b1, int, "%x");
305 expect_eq(_mbsnextc(&mbstring[2]), 0xb220, int, "%x"); /* lead + invalid tail */
306 expect_eq(_mbsnextc(&mbstring[3]), 0x20, int, "%x"); /* single char */
308 /* _mbclen/_mbslen */
309 expect_eq(_mbclen(mbstring), 2, int, "%d");
310 expect_eq(_mbclen(&mbstring[2]), 2, int, "%d");
311 expect_eq(_mbclen(&mbstring[3]), 1, int, "%d");
312 expect_eq(_mbslen(mbstring2), 4, int, "%d");
313 expect_eq(_mbslen(mbsonlylead), 0, int, "%d"); /* lead + NUL not counted as character */
314 expect_eq(_mbslen(mbstring), 4, int, "%d"); /* lead + invalid trail counted */
316 /* mbrlen */
317 if(!setlocale(LC_ALL, ".936") || !p_mbrlen) {
318 win_skip("mbrlen tests\n");
319 }else {
320 mbstate_t state = 0;
321 expect_eq(p_mbrlen((const char*)mbstring, 2, NULL), 2, int, "%d");
322 expect_eq(p_mbrlen((const char*)&mbstring[2], 2, NULL), 2, int, "%d");
323 expect_eq(p_mbrlen((const char*)&mbstring[3], 2, NULL), 1, int, "%d");
324 expect_eq(p_mbrlen((const char*)mbstring, 1, NULL), -2, int, "%d");
325 expect_eq(p_mbrlen((const char*)mbstring, 1, &state), -2, int, "%d");
326 ok(state == mbstring[0], "incorrect state value (%x)\n", state);
327 expect_eq(p_mbrlen((const char*)&mbstring[1], 1, &state), 2, int, "%d");
330 /* mbrtowc */
331 if(!setlocale(LC_ALL, ".936") || !p_mbrtowc) {
332 win_skip("mbrtowc tests\n");
333 }else {
334 mbstate_t state = 0;
335 wchar_t dst;
336 expect_eq(p_mbrtowc(&dst, (const char*)mbstring, 2, NULL), 2, int, "%d");
337 ok(dst == 0x6c28, "dst = %x, expected 0x6c28\n", dst);
338 expect_eq(p_mbrtowc(&dst, (const char*)mbstring+2, 2, NULL), 2, int, "%d");
339 ok(dst == 0x3f, "dst = %x, expected 0x3f\n", dst);
340 expect_eq(p_mbrtowc(&dst, (const char*)mbstring+3, 2, NULL), 1, int, "%d");
341 ok(dst == 0x20, "dst = %x, expected 0x20\n", dst);
342 expect_eq(p_mbrtowc(&dst, (const char*)mbstring, 1, NULL), -2, int, "%d");
343 ok(dst == 0, "dst = %x, expected 0\n", dst);
344 expect_eq(p_mbrtowc(&dst, (const char*)mbstring, 1, &state), -2, int, "%d");
345 ok(dst == 0, "dst = %x, expected 0\n", dst);
346 ok(state == mbstring[0], "incorrect state value (%x)\n", state);
347 expect_eq(p_mbrtowc(&dst, (const char*)mbstring+1, 1, &state), 2, int, "%d");
348 ok(dst == 0x6c28, "dst = %x, expected 0x6c28\n", dst);
349 ok(state == 0, "incorrect state value (%x)\n", state);
351 setlocale(LC_ALL, "C");
353 /* _mbccpy/_mbsncpy */
354 memset(buf, 0xff, sizeof(buf));
355 _mbccpy(buf, mbstring);
356 expect_bin(buf, "\xb0\xb1\xff", 3);
358 memset(buf, 0xff, sizeof(buf));
359 _mbsncpy(buf, mbstring, 1);
360 expect_bin(buf, "\xb0\xb1\xff", 3);
361 memset(buf, 0xff, sizeof(buf));
362 _mbsncpy(buf, mbstring, 2);
363 expect_bin(buf, "\xb0\xb1\xb2 \xff", 5);
364 memset(buf, 0xff, sizeof(buf));
365 _mbsncpy(buf, mbstring, 3);
366 expect_bin(buf, "\xb0\xb1\xb2 \xb3\xb4\xff", 7);
367 memset(buf, 0xff, sizeof(buf));
368 _mbsncpy(buf, mbstring, 4);
369 expect_bin(buf, "\xb0\xb1\xb2 \xb3\xb4 \xff", 8);
370 memset(buf, 0xff, sizeof(buf));
371 _mbsncpy(buf, mbstring, 5);
372 expect_bin(buf, "\xb0\xb1\xb2 \xb3\xb4 \0\0\xff", 10);
373 memset(buf, 0xff, sizeof(buf));
374 _mbsncpy(buf, mbsonlylead, 6);
375 expect_bin(buf, "\0\0\0\0\0\0\0\xff", 8);
377 memset(buf, 0xff, sizeof(buf));
378 _mbsnbcpy(buf, mbstring2, 2);
379 expect_bin(buf, "\xb0\xb1\xff", 3);
380 _mbsnbcpy(buf, mbstring2, 3);
381 expect_bin(buf, "\xb0\xb1\0\xff", 4);
382 _mbsnbcpy(buf, mbstring2, 4);
383 expect_bin(buf, "\xb0\xb1\xb2\xb3\xff", 5);
384 memset(buf, 0xff, sizeof(buf));
385 _mbsnbcpy(buf, mbsonlylead, 5);
386 expect_bin(buf, "\0\0\0\0\0\xff", 6);
388 /* _mbsinc/mbsdec */
389 step = _mbsinc(mbstring) - mbstring;
390 ok(step == 2, "_mbsinc adds %d (exp. 2)\n", step);
391 step = _mbsinc(&mbstring[2]) - &mbstring[2]; /* lead + invalid tail */
392 ok(step == 2, "_mbsinc adds %d (exp. 2)\n", step);
394 step = _mbsninc(mbsonlylead, 1) - mbsonlylead;
395 ok(step == 0, "_mbsninc adds %d (exp. 0)\n", step);
396 step = _mbsninc(mbsonlylead, 2) - mbsonlylead; /* lead + NUL byte + lead + char */
397 ok(step == 0, "_mbsninc adds %d (exp. 0)\n", step);
398 step = _mbsninc(mbstring2, 0) - mbstring2;
399 ok(step == 0, "_mbsninc adds %d (exp. 2)\n", step);
400 step = _mbsninc(mbstring2, 1) - mbstring2;
401 ok(step == 2, "_mbsninc adds %d (exp. 2)\n", step);
402 step = _mbsninc(mbstring2, 2) - mbstring2;
403 ok(step == 4, "_mbsninc adds %d (exp. 4)\n", step);
404 step = _mbsninc(mbstring2, 3) - mbstring2;
405 ok(step == 5, "_mbsninc adds %d (exp. 5)\n", step);
406 step = _mbsninc(mbstring2, 4) - mbstring2;
407 ok(step == 7, "_mbsninc adds %d (exp. 7)\n", step);
408 step = _mbsninc(mbstring2, 5) - mbstring2;
409 ok(step == 7, "_mbsninc adds %d (exp. 7)\n", step);
410 step = _mbsninc(mbstring2, 17) - mbstring2;
411 ok(step == 7, "_mbsninc adds %d (exp. 7)\n", step);
413 /* functions that depend on locale codepage, not mbcp.
414 * we hope the current locale to be SBCS because setlocale(LC_ALL, ".1252") seems not to work yet
415 * (as of Wine 0.9.43)
417 GetCPInfo(GetACP(), &cp_info);
418 if (cp_info.MaxCharSize == 1)
420 expect_eq(mblen((char *)mbstring, 3), 1, int, "%x");
421 expect_eq(_mbstrlen((char *)mbstring2), 7, int, "%d");
423 else
424 skip("Current locale has double-byte charset - could lead to false positives\n");
426 _setmbcp(1361);
427 expect_eq(_ismbblead(0x80), 0, int, "%d");
428 todo_wine {
429 expect_eq(_ismbblead(0x81), 1, int, "%d");
430 expect_eq(_ismbblead(0x83), 1, int, "%d");
432 expect_eq(_ismbblead(0x84), 1, int, "%d");
433 expect_eq(_ismbblead(0xd3), 1, int, "%d");
434 expect_eq(_ismbblead(0xd7), 0, int, "%d");
435 expect_eq(_ismbblead(0xd8), 1, int, "%d");
436 expect_eq(_ismbblead(0xd9), 1, int, "%d");
438 expect_eq(_ismbbtrail(0x30), 0, int, "%d");
439 expect_eq(_ismbbtrail(0x31), 1, int, "%d");
440 expect_eq(_ismbbtrail(0x7e), 1, int, "%d");
441 expect_eq(_ismbbtrail(0x7f), 0, int, "%d");
442 expect_eq(_ismbbtrail(0x80), 0, int, "%d");
443 expect_eq(_ismbbtrail(0x81), 1, int, "%d");
444 expect_eq(_ismbbtrail(0xfe), 1, int, "%d");
445 expect_eq(_ismbbtrail(0xff), 0, int, "%d");
447 _setmbcp(curr_mbcp);
450 static void test_mbsspn( void)
452 unsigned char str1[]="cabernet";
453 unsigned char str2[]="shiraz";
454 unsigned char set[]="abc";
455 unsigned char empty[]="";
456 int ret;
457 ret=_mbsspn( str1, set);
458 ok( ret==3, "_mbsspn returns %d should be 3\n", ret);
459 ret=_mbsspn( str2, set);
460 ok( ret==0, "_mbsspn returns %d should be 0\n", ret);
461 ret=_mbsspn( str1, empty);
462 ok( ret==0, "_mbsspn returns %d should be 0\n", ret);
465 static void test_mbsspnp( void)
467 unsigned char str1[]="cabernet";
468 unsigned char str2[]="shiraz";
469 unsigned char set[]="abc";
470 unsigned char empty[]="";
471 unsigned char full[]="abcenrt";
472 unsigned char* ret;
473 ret=_mbsspnp( str1, set);
474 ok( ret[0]=='e', "_mbsspnp returns %c should be e\n", ret[0]);
475 ret=_mbsspnp( str2, set);
476 ok( ret[0]=='s', "_mbsspnp returns %c should be s\n", ret[0]);
477 ret=_mbsspnp( str1, empty);
478 ok( ret[0]=='c', "_mbsspnp returns %c should be c\n", ret[0]);
479 ret=_mbsspnp( str1, full);
480 ok( ret==NULL, "_mbsspnp returns %p should be NULL\n", ret);
483 static void test_strdup(void)
485 char *str;
486 str = _strdup( 0 );
487 ok( str == 0, "strdup returns %s should be 0\n", str);
488 free( str );
491 static void test_strcpy_s(void)
493 char dest[8];
494 const char *small = "small";
495 const char *big = "atoolongstringforthislittledestination";
496 int ret;
498 if(!pstrcpy_s)
500 win_skip("strcpy_s not found\n");
501 return;
504 memset(dest, 'X', sizeof(dest));
505 ret = pstrcpy_s(dest, sizeof(dest), small);
506 ok(ret == 0, "Copying a string into a big enough destination returned %d, expected 0\n", ret);
507 ok(dest[0] == 's' && dest[1] == 'm' && dest[2] == 'a' && dest[3] == 'l' &&
508 dest[4] == 'l' && dest[5] == '\0'&& dest[6] == 'X' && dest[7] == 'X',
509 "Unexpected return data from strcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
510 dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
512 memset(dest, 'X', sizeof(dest));
513 ret = pstrcpy_s(dest, 0, big);
514 ok(ret == EINVAL, "Copying into a destination of size 0 returned %d, expected EINVAL\n", ret);
515 ok(dest[0] == 'X' && dest[1] == 'X' && dest[2] == 'X' && dest[3] == 'X' &&
516 dest[4] == 'X' && dest[5] == 'X' && dest[6] == 'X' && dest[7] == 'X',
517 "Unexpected return data from strcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
518 dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
519 ret = pstrcpy_s(dest, 0, NULL);
520 ok(ret == EINVAL, "Copying into a destination of size 0 returned %d, expected EINVAL\n", ret);
521 ok(dest[0] == 'X' && dest[1] == 'X' && dest[2] == 'X' && dest[3] == 'X' &&
522 dest[4] == 'X' && dest[5] == 'X' && dest[6] == 'X' && dest[7] == 'X',
523 "Unexpected return data from strcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
524 dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
526 memset(dest, 'X', sizeof(dest));
527 ret = pstrcpy_s(dest, sizeof(dest), big);
528 ok(ret == ERANGE, "Copying a big string in a small location returned %d, expected ERANGE\n", ret);
529 ok(dest[0] == '\0'&& dest[1] == 't' && dest[2] == 'o' && dest[3] == 'o' &&
530 dest[4] == 'l' && dest[5] == 'o' && dest[6] == 'n' && dest[7] == 'g',
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]);
534 memset(dest, 'X', sizeof(dest));
535 ret = pstrcpy_s(dest, sizeof(dest), NULL);
536 ok(ret == EINVAL, "Copying from a NULL source string returned %d, expected EINVAL\n", ret);
537 ok(dest[0] == '\0'&& dest[1] == 'X' && dest[2] == 'X' && dest[3] == 'X' &&
538 dest[4] == 'X' && dest[5] == 'X' && dest[6] == 'X' && dest[7] == 'X',
539 "Unexpected return data from strcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
540 dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
542 ret = pstrcpy_s(NULL, sizeof(dest), small);
543 ok(ret == EINVAL, "Copying a big string a NULL dest returned %d, expected EINVAL\n", ret);
546 #define NUMELMS(array) (sizeof(array)/sizeof((array)[0]))
548 #define okchars(dst, b0, b1, b2, b3, b4, b5, b6, b7) \
549 ok(dst[0] == b0 && dst[1] == b1 && dst[2] == b2 && dst[3] == b3 && \
550 dst[4] == b4 && dst[5] == b5 && dst[6] == b6 && dst[7] == b7, \
551 "Bad result: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",\
552 dst[0], dst[1], dst[2], dst[3], dst[4], dst[5], dst[6], dst[7])
554 static void test_memcpy_s(void)
556 static char dest[8];
557 static const char tiny[] = {'T',0,'I','N','Y',0};
558 static const char big[] = {'a','t','o','o','l','o','n','g','s','t','r','i','n','g',0};
559 int ret;
560 if (!p_memcpy_s) {
561 win_skip("memcpy_s not found\n");
562 return;
565 /* Normal */
566 memset(dest, 'X', sizeof(dest));
567 ret = p_memcpy_s(dest, NUMELMS(dest), tiny, NUMELMS(tiny));
568 ok(ret == 0, "Copying a buffer into a big enough destination returned %d, expected 0\n", ret);
569 okchars(dest, tiny[0], tiny[1], tiny[2], tiny[3], tiny[4], tiny[5], 'X', 'X');
571 /* Vary source size */
572 errno = 0xdeadbeef;
573 memset(dest, 'X', sizeof(dest));
574 ret = p_memcpy_s(dest, NUMELMS(dest), big, NUMELMS(big));
575 ok(ret == ERANGE, "Copying a big buffer to a small destination returned %d, expected ERANGE\n", ret);
576 ok(errno == ERANGE, "errno is %d, expected ERANGE\n", errno);
577 okchars(dest, 0, 0, 0, 0, 0, 0, 0, 0);
579 /* Replace source with NULL */
580 errno = 0xdeadbeef;
581 memset(dest, 'X', sizeof(dest));
582 ret = p_memcpy_s(dest, NUMELMS(dest), NULL, NUMELMS(tiny));
583 ok(ret == EINVAL, "Copying a NULL source buffer returned %d, expected EINVAL\n", ret);
584 ok(errno == EINVAL, "errno is %d, expected EINVAL\n", errno);
585 okchars(dest, 0, 0, 0, 0, 0, 0, 0, 0);
587 /* Vary dest size */
588 errno = 0xdeadbeef;
589 memset(dest, 'X', sizeof(dest));
590 ret = p_memcpy_s(dest, 0, tiny, NUMELMS(tiny));
591 ok(ret == ERANGE, "Copying into a destination of size 0 returned %d, expected ERANGE\n", ret);
592 ok(errno == ERANGE, "errno is %d, expected ERANGE\n", errno);
593 okchars(dest, 'X', 'X', 'X', 'X', 'X', 'X', 'X', 'X');
595 /* Replace dest with NULL */
596 errno = 0xdeadbeef;
597 ret = p_memcpy_s(NULL, NUMELMS(dest), tiny, NUMELMS(tiny));
598 ok(ret == EINVAL, "Copying a tiny buffer to a big NULL destination returned %d, expected EINVAL\n", ret);
599 ok(errno == EINVAL, "errno is %d, expected EINVAL\n", errno);
601 /* Combinations */
602 errno = 0xdeadbeef;
603 memset(dest, 'X', sizeof(dest));
604 ret = p_memcpy_s(dest, 0, NULL, NUMELMS(tiny));
605 ok(ret == EINVAL, "Copying a NULL buffer into a destination of size 0 returned %d, expected EINVAL\n", ret);
606 ok(errno == EINVAL, "errno is %d, expected EINVAL\n", errno);
607 okchars(dest, 'X', 'X', 'X', 'X', 'X', 'X', 'X', 'X');
610 static void test_memmove_s(void)
612 static char dest[8];
613 static const char tiny[] = {'T',0,'I','N','Y',0};
614 static const char big[] = {'a','t','o','o','l','o','n','g','s','t','r','i','n','g',0};
615 int ret;
616 if (!p_memmove_s) {
617 win_skip("memmove_s not found\n");
618 return;
621 /* Normal */
622 memset(dest, 'X', sizeof(dest));
623 ret = p_memmove_s(dest, NUMELMS(dest), tiny, NUMELMS(tiny));
624 ok(ret == 0, "Moving a buffer into a big enough destination returned %d, expected 0\n", ret);
625 okchars(dest, tiny[0], tiny[1], tiny[2], tiny[3], tiny[4], tiny[5], 'X', 'X');
627 /* Overlapping */
628 memcpy(dest, big, sizeof(dest));
629 ret = p_memmove_s(dest+1, NUMELMS(dest)-1, dest, NUMELMS(dest)-1);
630 ok(ret == 0, "Moving a buffer up one char returned %d, expected 0\n", ret);
631 okchars(dest, big[0], big[0], big[1], big[2], big[3], big[4], big[5], big[6]);
633 /* Vary source size */
634 errno = 0xdeadbeef;
635 memset(dest, 'X', sizeof(dest));
636 ret = p_memmove_s(dest, NUMELMS(dest), big, NUMELMS(big));
637 ok(ret == ERANGE, "Moving a big buffer to a small destination returned %d, expected ERANGE\n", ret);
638 ok(errno == ERANGE, "errno is %d, expected ERANGE\n", errno);
639 okchars(dest, 'X', 'X', 'X', 'X', 'X', 'X', 'X', 'X');
641 /* Replace source with NULL */
642 errno = 0xdeadbeef;
643 memset(dest, 'X', sizeof(dest));
644 ret = p_memmove_s(dest, NUMELMS(dest), NULL, NUMELMS(tiny));
645 ok(ret == EINVAL, "Moving a NULL source buffer returned %d, expected EINVAL\n", ret);
646 ok(errno == EINVAL, "errno is %d, expected EINVAL\n", errno);
647 okchars(dest, 'X', 'X', 'X', 'X', 'X', 'X', 'X', 'X');
649 /* Vary dest size */
650 errno = 0xdeadbeef;
651 memset(dest, 'X', sizeof(dest));
652 ret = p_memmove_s(dest, 0, tiny, NUMELMS(tiny));
653 ok(ret == ERANGE, "Moving into a destination of size 0 returned %d, expected ERANGE\n", ret);
654 ok(errno == ERANGE, "errno is %d, expected ERANGE\n", errno);
655 okchars(dest, 'X', 'X', 'X', 'X', 'X', 'X', 'X', 'X');
657 /* Replace dest with NULL */
658 errno = 0xdeadbeef;
659 ret = p_memmove_s(NULL, NUMELMS(dest), tiny, NUMELMS(tiny));
660 ok(ret == EINVAL, "Moving a tiny buffer to a big NULL destination returned %d, expected EINVAL\n", ret);
661 ok(errno == EINVAL, "errno is %d, expected EINVAL\n", errno);
663 /* Combinations */
664 errno = 0xdeadbeef;
665 memset(dest, 'X', sizeof(dest));
666 ret = p_memmove_s(dest, 0, NULL, NUMELMS(tiny));
667 ok(ret == EINVAL, "Moving a NULL buffer into a destination of size 0 returned %d, expected EINVAL\n", ret);
668 ok(errno == EINVAL, "errno is %d, expected EINVAL\n", errno);
669 okchars(dest, 'X', 'X', 'X', 'X', 'X', 'X', 'X', 'X');
672 static void test_strcat_s(void)
674 char dest[8];
675 const char *small = "sma";
676 int ret;
678 if(!pstrcat_s)
680 win_skip("strcat_s not found\n");
681 return;
684 memset(dest, 'X', sizeof(dest));
685 dest[0] = '\0';
686 ret = pstrcat_s(dest, sizeof(dest), small);
687 ok(ret == 0, "strcat_s: Copying a string into a big enough destination returned %d, expected 0\n", ret);
688 ok(dest[0] == 's' && dest[1] == 'm' && dest[2] == 'a' && dest[3] == '\0'&&
689 dest[4] == 'X' && dest[5] == 'X' && dest[6] == 'X' && dest[7] == 'X',
690 "Unexpected return data from strcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
691 dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
692 ret = pstrcat_s(dest, sizeof(dest), small);
693 ok(ret == 0, "strcat_s: Attaching a string to a big enough destination returned %d, expected 0\n", ret);
694 ok(dest[0] == 's' && dest[1] == 'm' && dest[2] == 'a' && dest[3] == 's' &&
695 dest[4] == 'm' && dest[5] == 'a' && dest[6] == '\0'&& dest[7] == 'X',
696 "Unexpected return data from strcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
697 dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
699 ret = pstrcat_s(dest, sizeof(dest), small);
700 ok(ret == ERANGE, "strcat_s: Attaching a string to a filled up destination returned %d, expected ERANGE\n", ret);
701 ok(dest[0] == '\0'&& dest[1] == 'm' && dest[2] == 'a' && dest[3] == 's' &&
702 dest[4] == 'm' && dest[5] == 'a' && dest[6] == 's' && dest[7] == 'm',
703 "Unexpected return data from strcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
704 dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
706 memset(dest, 'X', sizeof(dest));
707 dest[0] = 'a';
708 dest[1] = '\0';
710 ret = pstrcat_s(dest, 0, small);
711 ok(ret == EINVAL, "strcat_s: Source len = 0 returned %d, expected EINVAL\n", ret);
712 ok(dest[0] == 'a' && dest[1] == '\0'&& dest[2] == 'X' && dest[3] == 'X' &&
713 dest[4] == 'X' && dest[5] == 'X' && dest[6] == 'X' && dest[7] == 'X',
714 "Unexpected return data from strcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
715 dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
717 ret = pstrcat_s(dest, 0, NULL);
718 ok(ret == EINVAL, "strcat_s: len = 0 and src = NULL returned %d, expected EINVAL\n", ret);
719 ok(dest[0] == 'a' && dest[1] == '\0'&& dest[2] == 'X' && dest[3] == 'X' &&
720 dest[4] == 'X' && dest[5] == 'X' && dest[6] == 'X' && dest[7] == 'X',
721 "Unexpected return data from strcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
722 dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
724 ret = pstrcat_s(dest, sizeof(dest), NULL);
725 ok(ret == EINVAL, "strcat_s: Sourcing from NULL returned %d, expected EINVAL\n", ret);
726 ok(dest[0] == '\0'&& dest[1] == '\0'&& dest[2] == 'X' && dest[3] == 'X' &&
727 dest[4] == 'X' && dest[5] == 'X' && dest[6] == 'X' && dest[7] == 'X',
728 "Unexpected return data from strcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
729 dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
731 ret = pstrcat_s(NULL, sizeof(dest), small);
732 ok(ret == EINVAL, "strcat_s: Writing to a NULL string returned %d, expected EINVAL\n", ret);
735 static void test__mbsnbcpy_s(void)
737 unsigned char dest[8];
738 const unsigned char big[] = "atoolongstringforthislittledestination";
739 const unsigned char small[] = "small";
740 int ret;
742 if(!p_mbsnbcpy_s)
744 win_skip("_mbsnbcpy_s not found\n");
745 return;
748 memset(dest, 'X', sizeof(dest));
749 ret = p_mbsnbcpy_s(dest, sizeof(dest), small, sizeof(small));
750 ok(ret == 0, "_mbsnbcpy_s: Copying a string into a big enough destination returned %d, expected 0\n", ret);
751 ok(dest[0] == 's' && dest[1] == 'm' && dest[2] == 'a' && dest[3] == 'l' &&
752 dest[4] == 'l' && dest[5] == '\0'&& dest[6] == 'X' && dest[7] == 'X',
753 "Unexpected return data from _mbsnbcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
754 dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
756 /* WTF? */
757 memset(dest, 'X', sizeof(dest));
758 ret = p_mbsnbcpy_s(dest, sizeof(dest) - 2, big, sizeof(small));
759 ok(ret == ERANGE, "_mbsnbcpy_s: Copying a too long string returned %d, expected ERANGE\n", ret);
760 ok(dest[0] == '\0'&& dest[1] == 't' && dest[2] == 'o' && dest[3] == 'o' &&
761 dest[4] == 'l' && dest[5] == 'o' && dest[6] == 'X' && dest[7] == 'X',
762 "Unexpected return data from _mbsnbcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
763 dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
765 memset(dest, 'X', sizeof(dest));
766 ret = p_mbsnbcpy_s(dest, sizeof(dest) - 2, big, 4);
767 ok(ret == 0, "_mbsnbcpy_s: Copying a too long string with a count cap returned %d, expected 0\n", ret);
768 ok(dest[0] == 'a' && dest[1] == 't' && dest[2] == 'o' && dest[3] == 'o' &&
769 dest[4] == '\0'&& dest[5] == 'X' && dest[6] == 'X' && dest[7] == 'X',
770 "Unexpected return data from _mbsnbcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
771 dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
773 memset(dest, 'X', sizeof(dest));
774 ret = p_mbsnbcpy_s(dest, sizeof(dest) - 2, small, sizeof(small) + 10);
775 ok(ret == 0, "_mbsnbcpy_s: Copying more data than the source string len returned %d, expected 0\n", ret);
776 ok(dest[0] == 's' && dest[1] == 'm' && dest[2] == 'a' && dest[3] == 'l' &&
777 dest[4] == 'l' && dest[5] == '\0'&& dest[6] == 'X' && dest[7] == 'X',
778 "Unexpected return data from _mbsnbcpy_s: 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x\n",
779 dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
782 static void test__mbscpy_s(void)
784 const unsigned char src[] = "source string";
785 unsigned char dest[16];
786 int ret;
788 if(!p__mbscpy_s)
790 win_skip("_mbscpy_s not found\n");
791 return;
794 ret = p__mbscpy_s(NULL, 0, src);
795 ok(ret == EINVAL, "got %d\n", ret);
796 ret = p__mbscpy_s(NULL, sizeof(dest), src);
797 ok(ret == EINVAL, "got %d\n", ret);
798 ret = p__mbscpy_s(dest, 0, src);
799 ok(ret == EINVAL, "got %d\n", ret);
800 dest[0] = 'x';
801 ret = p__mbscpy_s(dest, sizeof(dest), NULL);
802 ok(ret == EINVAL, "got %d\n", ret);
803 ok(!dest[0], "dest buffer was not modified on invalid argument\n");
805 memset(dest, 'X', sizeof(dest));
806 ret = p__mbscpy_s(dest, sizeof(dest), src);
807 ok(!ret, "got %d\n", ret);
808 ok(!memcmp(dest, src, sizeof(src)), "dest = %s\n", dest);
809 ok(dest[sizeof(src)] == 'X', "unused part of buffer was modified\n");
811 memset(dest, 'X', sizeof(dest));
812 ret = p__mbscpy_s(dest, 4, src);
813 ok(ret == ERANGE, "got %d\n", ret);
814 ok(!dest[0], "incorrect dest buffer (%d)\n", dest[0]);
815 ok(dest[1] == src[1], "incorrect dest buffer (%d)\n", dest[1]);
818 static void test_wcscpy_s(void)
820 static const WCHAR szLongText[] = { 'T','h','i','s','A','L','o','n','g','s','t','r','i','n','g',0 };
821 static WCHAR szDest[18];
822 static WCHAR szDestShort[8];
823 int ret;
825 if(!p_wcscpy_s)
827 win_skip("wcscpy_s not found\n");
828 return;
831 /* Test NULL Dest */
832 errno = EBADF;
833 ret = p_wcscpy_s(NULL, 18, szLongText);
834 ok(ret == EINVAL, "p_wcscpy_s expect EINVAL got %d\n", ret);
835 ok(errno == EINVAL, "expected errno EINVAL got %d\n", errno);
837 /* Test NULL Source */
838 errno = EBADF;
839 szDest[0] = 'A';
840 ret = p_wcscpy_s(szDest, 18, NULL);
841 ok(ret == EINVAL, "expected EINVAL got %d\n", ret);
842 ok(errno == EINVAL, "expected errno EINVAL got %d\n", errno);
843 ok(szDest[0] == 0, "szDest[0] not 0, got %c\n", szDest[0]);
845 /* Test invalid size */
846 errno = EBADF;
847 szDest[0] = 'A';
848 ret = p_wcscpy_s(szDest, 0, szLongText);
849 /* Later versions changed the return value for this case to EINVAL,
850 * and don't modify the result if the dest size is 0.
852 ok(ret == ERANGE || ret == EINVAL, "expected ERANGE/EINVAL got %d\n", ret);
853 ok(errno == ERANGE || errno == EINVAL, "expected errno ERANGE/EINVAL got %d\n", errno);
854 ok(szDest[0] == 0 || ret == EINVAL, "szDest[0] not 0\n");
856 /* Copy same buffer size */
857 ret = p_wcscpy_s(szDest, 18, szLongText);
858 ok(ret == 0, "expected 0 got %d\n", ret);
859 ok(lstrcmpW(szDest, szLongText) == 0, "szDest != szLongText\n");
861 /* Copy smaller buffer size */
862 errno = EBADF;
863 szDest[0] = 'A';
864 ret = p_wcscpy_s(szDestShort, 8, szLongText);
865 ok(ret == ERANGE || ret == EINVAL, "expected ERANGE/EINVAL got %d\n", ret);
866 ok(errno == ERANGE || errno == EINVAL, "expected errno ERANGE/EINVAL got %d\n", errno);
867 ok(szDestShort[0] == 0, "szDestShort[0] not 0\n");
869 if(!p_wcsncpy_s)
871 win_skip("wcsncpy_s not found\n");
872 return;
875 ret = p_wcsncpy_s(NULL, 18, szLongText, sizeof(szLongText)/sizeof(WCHAR));
876 ok(ret == EINVAL, "p_wcsncpy_s expect EINVAL got %d\n", ret);
878 szDest[0] = 'A';
879 ret = p_wcsncpy_s(szDest, 18, NULL, 1);
880 ok(ret == EINVAL, "expected EINVAL got %d\n", ret);
881 ok(szDest[0] == 0, "szDest[0] not 0\n");
883 szDest[0] = 'A';
884 ret = p_wcsncpy_s(szDest, 18, NULL, 0);
885 ok(ret == 0, "expected ERROR_SUCCESS got %d\n", ret);
886 ok(szDest[0] == 0, "szDest[0] not 0\n");
888 szDest[0] = 'A';
889 ret = p_wcsncpy_s(szDest, 0, szLongText, sizeof(szLongText)/sizeof(WCHAR));
890 ok(ret == ERANGE || ret == EINVAL, "expected ERANGE/EINVAL got %d\n", ret);
891 ok(szDest[0] == 0 || ret == EINVAL, "szDest[0] not 0\n");
893 ret = p_wcsncpy_s(szDest, 18, szLongText, sizeof(szLongText)/sizeof(WCHAR));
894 ok(ret == 0, "expected 0 got %d\n", ret);
895 ok(lstrcmpW(szDest, szLongText) == 0, "szDest != szLongText\n");
897 szDest[0] = 'A';
898 ret = p_wcsncpy_s(szDestShort, 8, szLongText, sizeof(szLongText)/sizeof(WCHAR));
899 ok(ret == ERANGE || ret == EINVAL, "expected ERANGE/EINVAL got %d\n", ret);
900 ok(szDestShort[0] == 0, "szDestShort[0] not 0\n");
902 szDest[0] = 'A';
903 ret = p_wcsncpy_s(szDest, 5, szLongText, -1);
904 ok(ret == STRUNCATE, "expected STRUNCATE got %d\n", ret);
905 ok(szDest[4] == 0, "szDest[4] not 0\n");
906 ok(!memcmp(szDest, szLongText, 4*sizeof(WCHAR)), "szDest = %s\n", wine_dbgstr_w(szDest));
908 ret = p_wcsncpy_s(NULL, 0, (void*)0xdeadbeef, 0);
909 ok(ret == 0, "ret = %d\n", ret);
911 szDestShort[0] = '1';
912 szDestShort[1] = 0;
913 ret = p_wcsncpy_s(szDestShort+1, 4, szDestShort, -1);
914 ok(ret == STRUNCATE, "expected ERROR_SUCCESS got %d\n", ret);
915 ok(szDestShort[0]=='1' && szDestShort[1]=='1' && szDestShort[2]=='1' && szDestShort[3]=='1',
916 "szDestShort = %s\n", wine_dbgstr_w(szDestShort));
919 static void test__wcsupr_s(void)
921 static const WCHAR mixedString[] = {'M', 'i', 'X', 'e', 'D', 'l', 'o', 'w',
922 'e', 'r', 'U', 'P', 'P', 'E', 'R', 0};
923 static const WCHAR expectedString[] = {'M', 'I', 'X', 'E', 'D', 'L', 'O',
924 'W', 'E', 'R', 'U', 'P', 'P', 'E',
925 'R', 0};
926 WCHAR testBuffer[2*sizeof(mixedString)/sizeof(WCHAR)];
927 int ret;
929 if (!p_wcsupr_s)
931 win_skip("_wcsupr_s not found\n");
932 return;
935 /* Test NULL input string and invalid size. */
936 errno = EBADF;
937 ret = p_wcsupr_s(NULL, 0);
938 ok(ret == EINVAL, "Expected _wcsupr_s to fail with EINVAL, got %d\n", ret);
939 ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
941 /* Test NULL input string and valid size. */
942 errno = EBADF;
943 ret = p_wcsupr_s(NULL, sizeof(testBuffer)/sizeof(WCHAR));
944 ok(ret == EINVAL, "Expected _wcsupr_s to fail with EINVAL, got %d\n", ret);
945 ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
947 /* Test empty string with zero size. */
948 errno = EBADF;
949 testBuffer[0] = '\0';
950 ret = p_wcsupr_s(testBuffer, 0);
951 ok(ret == EINVAL, "Expected _wcsupr_s to fail with EINVAL, got %d\n", ret);
952 ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
953 ok(testBuffer[0] == '\0', "Expected the buffer to be unchanged\n");
955 /* Test empty string with size of one. */
956 testBuffer[0] = '\0';
957 ret = p_wcsupr_s(testBuffer, 1);
958 ok(ret == 0, "Expected _wcsupr_s to succeed, got %d\n", ret);
959 ok(testBuffer[0] == '\0', "Expected the buffer to be unchanged\n");
961 /* Test one-byte buffer with zero size. */
962 errno = EBADF;
963 testBuffer[0] = 'x';
964 ret = p_wcsupr_s(testBuffer, 0);
965 ok(ret == EINVAL, "Expected _wcsupr_s to fail with EINVAL, got %d\n", ret);
966 ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
967 ok(testBuffer[0] == '\0', "Expected the first buffer character to be null\n");
969 /* Test one-byte buffer with size of one. */
970 errno = EBADF;
971 testBuffer[0] = 'x';
972 ret = p_wcsupr_s(testBuffer, 1);
973 ok(ret == EINVAL, "Expected _wcsupr_s to fail with EINVAL, got %d\n", ret);
974 ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
975 ok(testBuffer[0] == '\0', "Expected the first buffer character to be null\n");
977 /* Test invalid size. */
978 wcscpy(testBuffer, mixedString);
979 errno = EBADF;
980 ret = p_wcsupr_s(testBuffer, 0);
981 ok(ret == EINVAL, "Expected _wcsupr_s to fail with EINVAL, got %d\n", ret);
982 ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
983 ok(testBuffer[0] == '\0', "Expected the first buffer character to be null\n");
985 /* Test normal string uppercasing. */
986 wcscpy(testBuffer, mixedString);
987 ret = p_wcsupr_s(testBuffer, sizeof(mixedString)/sizeof(WCHAR));
988 ok(ret == 0, "Expected _wcsupr_s to succeed, got %d\n", ret);
989 ok(!wcscmp(testBuffer, expectedString), "Expected the string to be fully upper-case\n");
991 /* Test uppercasing with a shorter buffer size count. */
992 wcscpy(testBuffer, mixedString);
993 errno = EBADF;
994 ret = p_wcsupr_s(testBuffer, sizeof(mixedString)/sizeof(WCHAR) - 1);
995 ok(ret == EINVAL, "Expected _wcsupr_s to fail with EINVAL, got %d\n", ret);
996 ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
997 ok(testBuffer[0] == '\0', "Expected the first buffer character to be null\n");
999 /* Test uppercasing with a longer buffer size count. */
1000 wcscpy(testBuffer, mixedString);
1001 ret = p_wcsupr_s(testBuffer, sizeof(testBuffer)/sizeof(WCHAR));
1002 ok(ret == 0, "Expected _wcsupr_s to succeed, got %d\n", ret);
1003 ok(!wcscmp(testBuffer, expectedString), "Expected the string to be fully upper-case\n");
1006 static void test__wcslwr_s(void)
1008 static const WCHAR mixedString[] = {'M', 'i', 'X', 'e', 'D', 'l', 'o', 'w',
1009 'e', 'r', 'U', 'P', 'P', 'E', 'R', 0};
1010 static const WCHAR expectedString[] = {'m', 'i', 'x', 'e', 'd', 'l', 'o',
1011 'w', 'e', 'r', 'u', 'p', 'p', 'e',
1012 'r', 0};
1013 WCHAR buffer[2*sizeof(mixedString)/sizeof(WCHAR)];
1014 int ret;
1016 if (!p_wcslwr_s)
1018 win_skip("_wcslwr_s not found\n");
1019 return;
1022 /* Test NULL input string and invalid size. */
1023 errno = EBADF;
1024 ret = p_wcslwr_s(NULL, 0);
1025 ok(ret == EINVAL, "expected EINVAL, got %d\n", ret);
1026 ok(errno == EINVAL, "expected errno EINVAL, got %d\n", errno);
1028 /* Test NULL input string and valid size. */
1029 errno = EBADF;
1030 ret = p_wcslwr_s(NULL, sizeof(buffer)/sizeof(wchar_t));
1031 ok(ret == EINVAL, "expected EINVAL, got %d\n", ret);
1032 ok(errno == EINVAL, "expected errno EINVAL, got %d\n", errno);
1034 /* Test empty string with zero size. */
1035 errno = EBADF;
1036 buffer[0] = 'a';
1037 ret = p_wcslwr_s(buffer, 0);
1038 ok(ret == EINVAL, "expected EINVAL, got %d\n", ret);
1039 ok(errno == EINVAL, "expected errno EINVAL, got %d\n", errno);
1040 ok(buffer[0] == 0, "expected empty string\n");
1042 /* Test empty string with size of one. */
1043 buffer[0] = 0;
1044 ret = p_wcslwr_s(buffer, 1);
1045 ok(ret == 0, "got %d\n", ret);
1046 ok(buffer[0] == 0, "expected buffer to be unchanged\n");
1048 /* Test one-byte buffer with zero size. */
1049 errno = EBADF;
1050 buffer[0] = 'x';
1051 ret = p_wcslwr_s(buffer, 0);
1052 ok(ret == EINVAL, "expected EINVAL, got %d\n", ret);
1053 ok(errno == EINVAL, "expected errno to be EINVAL, got %d\n", errno);
1054 ok(buffer[0] == '\0', "expected empty string\n");
1056 /* Test one-byte buffer with size of one. */
1057 errno = EBADF;
1058 buffer[0] = 'x';
1059 ret = p_wcslwr_s(buffer, 1);
1060 ok(ret == EINVAL, "expected EINVAL, got %d\n", ret);
1061 ok(errno == EINVAL, "expected errno to be EINVAL, got %d\n", errno);
1062 ok(buffer[0] == '\0', "expected empty string\n");
1064 /* Test invalid size. */
1065 wcscpy(buffer, mixedString);
1066 errno = EBADF;
1067 ret = p_wcslwr_s(buffer, 0);
1068 ok(ret == EINVAL, "Expected EINVAL, got %d\n", ret);
1069 ok(errno == EINVAL, "expected errno to be EINVAL, got %d\n", errno);
1070 ok(buffer[0] == '\0', "expected empty string\n");
1072 /* Test normal string uppercasing. */
1073 wcscpy(buffer, mixedString);
1074 ret = p_wcslwr_s(buffer, sizeof(mixedString)/sizeof(WCHAR));
1075 ok(ret == 0, "expected 0, got %d\n", ret);
1076 ok(!wcscmp(buffer, expectedString), "expected lowercase\n");
1078 /* Test uppercasing with a shorter buffer size count. */
1079 wcscpy(buffer, mixedString);
1080 errno = EBADF;
1081 ret = p_wcslwr_s(buffer, sizeof(mixedString)/sizeof(WCHAR) - 1);
1082 ok(ret == EINVAL, "expected EINVAL, got %d\n", ret);
1083 ok(errno == EINVAL, "expected errno to be EINVAL, got %d\n", errno);
1084 ok(buffer[0] == '\0', "expected empty string\n");
1086 /* Test uppercasing with a longer buffer size count. */
1087 wcscpy(buffer, mixedString);
1088 ret = p_wcslwr_s(buffer, sizeof(buffer)/sizeof(WCHAR));
1089 ok(ret == 0, "expected 0, got %d\n", ret);
1090 ok(!wcscmp(buffer, expectedString), "expected lowercase\n");
1093 static void test_mbcjisjms(void)
1095 /* List of value-pairs to test. The test assumes the last pair to be {0, ..} */
1096 unsigned int jisjms[][2] = { {0x2020, 0}, {0x2021, 0}, {0x2120, 0}, {0x2121, 0x8140},
1097 {0x7f7f, 0}, {0x7f7e, 0}, {0x7e7f, 0}, {0x7e7e, 0xeffc},
1098 {0x255f, 0x837e}, {0x2560, 0x8380}, {0x2561, 0x8381},
1099 {0x2121FFFF, 0}, {0x2223, 0x81a1}, {0x237e, 0x829e}, {0, 0}};
1100 int cp[] = { 932, 936, 939, 950, 1361, _MB_CP_SBCS };
1101 unsigned int i, j;
1102 int prev_cp = _getmbcp();
1104 for (i = 0; i < sizeof(cp)/sizeof(cp[0]); i++)
1106 _setmbcp(cp[i]);
1107 for (j = 0; jisjms[j][0] != 0; j++)
1109 unsigned int ret, exp;
1110 ret = _mbcjistojms(jisjms[j][0]);
1111 exp = (cp[i] == 932) ? jisjms[j][1] : jisjms[j][0];
1112 ok(ret == exp, "Expected 0x%x, got 0x%x (0x%x, codepage=%d)\n",
1113 exp, ret, jisjms[j][0], cp[i]);
1116 _setmbcp(prev_cp);
1119 static void test_mbcjmsjis(void)
1121 /* List of value-pairs to test. The test assumes the last pair to be {0, ..} */
1122 unsigned int jmsjis[][2] = { {0x80fc, 0}, {0x813f, 0}, {0x8140, 0x2121},
1123 {0x817e, 0x215f}, {0x817f, 0}, {0x8180, 0x2160},
1124 {0x819e, 0x217e}, {0x819f, 0x2221}, {0x81fc, 0x227e},
1125 {0x81fd, 0}, {0x9ffc, 0x5e7e}, {0x9ffd, 0},
1126 {0xa040, 0}, {0xdffc, 0}, {0xe040, 0x5f21},
1127 {0xeffc, 0x7e7e}, {0xf040, 0}, {0x21, 0}, {0, 0}};
1128 int cp[] = { 932, 936, 939, 950, 1361, _MB_CP_SBCS };
1129 unsigned int i, j;
1130 int prev_cp = _getmbcp();
1132 for (i = 0; i < sizeof(cp)/sizeof(cp[0]); i++)
1134 _setmbcp(cp[i]);
1135 for (j = 0; jmsjis[j][0] != 0; j++)
1137 unsigned int ret, exp;
1138 ret = _mbcjmstojis(jmsjis[j][0]);
1139 exp = (cp[i] == 932) ? jmsjis[j][1] : jmsjis[j][0];
1140 ok(ret == exp, "Expected 0x%x, got 0x%x (0x%x, codepage=%d)\n",
1141 exp, ret, jmsjis[j][0], cp[i]);
1144 _setmbcp(prev_cp);
1147 static void test_mbctohira(void)
1149 static const unsigned int mbchira_932[][2] = {
1150 {0x8152, 0x8152}, {0x8153, 0x8153}, {0x8154, 0x8154}, {0x8155, 0x8155},
1151 {0x82a0, 0x82a0}, {0x833f, 0x833f}, {0x8340, 0x829f}, {0x837e, 0x82dd},
1152 {0x837f, 0x837f}, {0x8380, 0x82de}, {0x8393, 0x82f1}, {0x8394, 0x8394},
1153 {0x8396, 0x8396}, {0x8397, 0x8397},
1154 {0xa5, 0xa5}, {0xb0, 0xb0}, {0xdd, 0xdd} };
1155 unsigned int i;
1156 unsigned int prev_cp = _getmbcp();
1158 _setmbcp(_MB_CP_SBCS);
1159 for (i = 0; i < sizeof(mbchira_932)/sizeof(mbchira_932[0]); i++)
1161 int ret, exp = mbchira_932[i][0];
1162 ret = _mbctohira(mbchira_932[i][0]);
1163 ok(ret == exp, "Expected 0x%x, got 0x%x\n", exp, ret);
1166 _setmbcp(932);
1167 for (i = 0; i < sizeof(mbchira_932)/sizeof(mbchira_932[0]); i++)
1169 unsigned int ret, exp;
1170 ret = _mbctohira(mbchira_932[i][0]);
1171 exp = mbchira_932[i][1];
1172 ok(ret == exp, "Expected 0x%x, got 0x%x\n", exp, ret);
1174 _setmbcp(prev_cp);
1177 static void test_mbctokata(void)
1179 static const unsigned int mbckata_932[][2] = {
1180 {0x8152, 0x8152}, {0x8153, 0x8153}, {0x8154, 0x8154}, {0x8155, 0x8155},
1181 {0x833f, 0x833f}, {0x829f, 0x8340}, {0x82dd, 0x837e}, {0x837f, 0x837f},
1182 {0x82de, 0x8380}, {0x8394, 0x8394}, {0x8397, 0x8397},
1183 {0xa5, 0xa5}, {0xb0, 0xb0}, {0xdd, 0xdd} };
1184 unsigned int i;
1185 unsigned int prev_cp = _getmbcp();
1187 _setmbcp(_MB_CP_SBCS);
1188 for (i = 0; i < sizeof(mbckata_932)/sizeof(mbckata_932[0]); i++)
1190 int ret, exp = mbckata_932[i][0];
1191 ret = _mbctokata(mbckata_932[i][0]);
1192 ok(ret == exp, "Expected 0x%x, got 0x%x\n", exp, ret);
1195 _setmbcp(932);
1196 for (i = 0; i < sizeof(mbckata_932)/sizeof(mbckata_932[0]); i++)
1198 unsigned int ret, exp;
1199 ret = _mbctokata(mbckata_932[i][0]);
1200 exp = mbckata_932[i][1];
1201 ok(ret == exp, "Expected 0x%x, got 0x%x\n", exp, ret);
1203 _setmbcp(prev_cp);
1206 static void test_mbbtombc(void)
1208 static const unsigned int mbbmbc[][2] = {
1209 {0x1f, 0x1f}, {0x20, 0x8140}, {0x39, 0x8258}, {0x40, 0x8197},
1210 {0x41, 0x8260}, {0x5e, 0x814f}, {0x7e, 0x8150}, {0x7f, 0x7f},
1211 {0x80, 0x80}, {0x81, 0x81}, {0xa0, 0xa0}, {0xa7, 0x8340},
1212 {0xb0, 0x815b}, {0xd1, 0x8380}, {0xff, 0xff}, {0,0}};
1213 int cp[] = { 932, 936, 939, 950, 1361, _MB_CP_SBCS };
1214 int i, j;
1215 int prev_cp = _getmbcp();
1217 for (i = 0; i < sizeof(cp)/sizeof(cp[0]); i++)
1219 _setmbcp(cp[i]);
1220 for (j = 0; mbbmbc[j][0] != 0; j++)
1222 unsigned int exp, ret;
1223 ret = _mbbtombc(mbbmbc[j][0]);
1224 exp = (cp[i] == 932) ? mbbmbc[j][1] : mbbmbc[j][0];
1225 ok(ret == exp, "Expected 0x%x, got 0x%x (0x%x, codepage %d)\n",
1226 exp, ret, mbbmbc[j][0], cp[i]);
1229 _setmbcp(prev_cp);
1232 static void test_mbctombb(void)
1234 static const unsigned int mbcmbb_932[][2] = {
1235 {0x829e, 0x829e}, {0x829f, 0xa7}, {0x82f1, 0xdd}, {0x82f2, 0x82f2},
1236 {0x833f, 0x833f}, {0x8340, 0xa7}, {0x837e, 0xd0}, {0x837f, 0x837f},
1237 {0x8380, 0xd1}, {0x8396, 0xb9}, {0x8397, 0x8397}, {0x813f, 0x813f},
1238 {0x8140, 0x20}, {0x814c, 0x814c}, {0x814f, 0x5e}, {0x8197, 0x40},
1239 {0x8198, 0x8198}, {0x8258, 0x39}, {0x8259, 0x8259}, {0x825f, 0x825f},
1240 {0x8260, 0x41}, {0x82f1, 0xdd}, {0x82f2, 0x82f2}, {0,0}};
1241 unsigned int exp, ret, i;
1242 unsigned int prev_cp = _getmbcp();
1244 _setmbcp(932);
1245 for (i = 0; mbcmbb_932[i][0] != 0; i++)
1247 ret = _mbctombb(mbcmbb_932[i][0]);
1248 exp = mbcmbb_932[i][1];
1249 ok(ret == exp, "Expected 0x%x, got 0x%x\n", exp, ret);
1251 _setmbcp(prev_cp);
1254 static void test_ismbckata(void) {
1255 struct katakana_pair {
1256 UINT c;
1257 BOOL exp;
1259 static const struct katakana_pair tests[] = {
1260 {0x8152, FALSE}, {0x8153, FALSE}, {0x8154, FALSE}, {0x8155, FALSE},
1261 {0x82a0, FALSE}, {0x833f, FALSE}, {0x8340, TRUE }, {0x837e, TRUE },
1262 {0x837f, FALSE}, {0x8380, TRUE }, {0x8396, TRUE }, {0x8397, FALSE},
1263 {0xa5, FALSE}, {0xb0, FALSE}, {0xdd, FALSE}
1265 unsigned int prev_cp = _getmbcp();
1266 int ret;
1267 unsigned int i;
1269 _setmbcp(_MB_CP_SBCS);
1270 for (i = 0; i < sizeof(tests)/sizeof(tests[0]); i++) {
1271 ret = _ismbckata(tests[i].c);
1272 ok(!ret, "expected 0, got %d for %04x\n", ret, tests[i].c);
1275 _setmbcp(932);
1276 for (i = 0; i < sizeof(tests)/sizeof(tests[0]); i++) {
1277 ret = _ismbckata(tests[i].c);
1278 ok(!!ret == tests[i].exp, "expected %d, got %d for %04x\n",
1279 tests[i].exp, !!ret, tests[i].c);
1282 _setmbcp(prev_cp);
1285 static void test_ismbclegal(void) {
1286 unsigned int prev_cp = _getmbcp();
1287 int ret, exp, err;
1288 unsigned int i;
1290 _setmbcp(932); /* Japanese */
1291 err = 0;
1292 for(i = 0; i < 0x10000; i++) {
1293 ret = _ismbclegal(i);
1294 exp = ((HIBYTE(i) >= 0x81 && HIBYTE(i) <= 0x9F) ||
1295 (HIBYTE(i) >= 0xE0 && HIBYTE(i) <= 0xFC)) &&
1296 ((LOBYTE(i) >= 0x40 && LOBYTE(i) <= 0x7E) ||
1297 (LOBYTE(i) >= 0x80 && LOBYTE(i) <= 0xFC));
1298 if(ret != exp) {
1299 err = 1;
1300 break;
1303 ok(!err, "_ismbclegal (932) : Expected 0x%x, got 0x%x (0x%x)\n", exp, ret, i);
1304 _setmbcp(936); /* Chinese (GBK) */
1305 err = 0;
1306 for(i = 0; i < 0x10000; i++) {
1307 ret = _ismbclegal(i);
1308 exp = HIBYTE(i) >= 0x81 && HIBYTE(i) <= 0xFE &&
1309 LOBYTE(i) >= 0x40 && LOBYTE(i) <= 0xFE;
1310 if(ret != exp) {
1311 err = 1;
1312 break;
1315 ok(!err, "_ismbclegal (936) : Expected 0x%x, got 0x%x (0x%x)\n", exp, ret, i);
1316 _setmbcp(949); /* Korean */
1317 err = 0;
1318 for(i = 0; i < 0x10000; i++) {
1319 ret = _ismbclegal(i);
1320 exp = HIBYTE(i) >= 0x81 && HIBYTE(i) <= 0xFE &&
1321 LOBYTE(i) >= 0x41 && LOBYTE(i) <= 0xFE;
1322 if(ret != exp) {
1323 err = 1;
1324 break;
1327 ok(!err, "_ismbclegal (949) : Expected 0x%x, got 0x%x (0x%x)\n", exp, ret, i);
1328 _setmbcp(950); /* Chinese (Big5) */
1329 err = 0;
1330 for(i = 0; i < 0x10000; i++) {
1331 ret = _ismbclegal(i);
1332 exp = HIBYTE(i) >= 0x81 && HIBYTE(i) <= 0xFE &&
1333 ((LOBYTE(i) >= 0x40 && LOBYTE(i) <= 0x7E) ||
1334 (LOBYTE(i) >= 0xA1 && LOBYTE(i) <= 0xFE));
1335 if(ret != exp) {
1336 err = 1;
1337 break;
1340 ok(!err, "_ismbclegal (950) : Expected 0x%x, got 0x%x (0x%x)\n", exp, ret, i);
1341 _setmbcp(1361); /* Korean (Johab) */
1342 err = 0;
1343 for(i = 0; i < 0x10000; i++) {
1344 ret = _ismbclegal(i);
1345 exp = ((HIBYTE(i) >= 0x81 && HIBYTE(i) <= 0xD3) ||
1346 (HIBYTE(i) >= 0xD8 && HIBYTE(i) <= 0xF9)) &&
1347 ((LOBYTE(i) >= 0x31 && LOBYTE(i) <= 0x7E) ||
1348 (LOBYTE(i) >= 0x81 && LOBYTE(i) <= 0xFE)) &&
1349 HIBYTE(i) != 0xDF;
1350 if(ret != exp) {
1351 err = 1;
1352 break;
1355 todo_wine ok(!err, "_ismbclegal (1361) : Expected 0x%x, got 0x%x (0x%x)\n", exp, ret, i);
1357 _setmbcp(prev_cp);
1360 static const struct {
1361 const char* string;
1362 const char* delimiter;
1363 int exp_offsetret1; /* returned offset from string after first call to strtok()
1364 -1 means NULL */
1365 int exp_offsetret2; /* returned offset from string after second call to strtok()
1366 -1 means NULL */
1367 int exp_offsetret3; /* returned offset from string after third call to strtok()
1368 -1 means NULL */
1369 } testcases_strtok[] = {
1370 { "red cabernet", " ", 0, 4, -1 },
1371 { "sparkling white riesling", " ", 0, 10, 16 },
1372 { " pale cream sherry", "e ", 1, 6, 9 },
1373 /* end mark */
1374 { 0}
1377 static void test_strtok(void)
1379 int i;
1380 char *strret;
1381 char teststr[100];
1382 for( i = 0; testcases_strtok[i].string; i++){
1383 strcpy( teststr, testcases_strtok[i].string);
1384 strret = strtok( teststr, testcases_strtok[i].delimiter);
1385 ok( (int)(strret - teststr) == testcases_strtok[i].exp_offsetret1 ||
1386 (!strret && testcases_strtok[i].exp_offsetret1 == -1),
1387 "string (%p) \'%s\' return %p\n",
1388 teststr, testcases_strtok[i].string, strret);
1389 if( !strret) continue;
1390 strret = strtok( NULL, testcases_strtok[i].delimiter);
1391 ok( (int)(strret - teststr) == testcases_strtok[i].exp_offsetret2 ||
1392 (!strret && testcases_strtok[i].exp_offsetret2 == -1),
1393 "second call string (%p) \'%s\' return %p\n",
1394 teststr, testcases_strtok[i].string, strret);
1395 if( !strret) continue;
1396 strret = strtok( NULL, testcases_strtok[i].delimiter);
1397 ok( (int)(strret - teststr) == testcases_strtok[i].exp_offsetret3 ||
1398 (!strret && testcases_strtok[i].exp_offsetret3 == -1),
1399 "third call string (%p) \'%s\' return %p\n",
1400 teststr, testcases_strtok[i].string, strret);
1404 static void test_strtol(void)
1406 static char neg[] = "-0x";
1408 char* e;
1409 LONG l;
1410 ULONG ul;
1412 /* errno is only set in case of error, so reset errno to EBADF to check for errno modification */
1413 /* errno is modified on W2K8+ */
1414 errno = EBADF;
1415 l = strtol("-1234", &e, 0);
1416 ok(l==-1234, "wrong value %d\n", l);
1417 ok(errno == EBADF || broken(errno == 0), "wrong errno %d\n", errno);
1418 errno = EBADF;
1419 ul = strtoul("1234", &e, 0);
1420 ok(ul==1234, "wrong value %u\n", ul);
1421 ok(errno == EBADF || broken(errno == 0), "wrong errno %d\n", errno);
1423 errno = EBADF;
1424 l = strtol("2147483647L", &e, 0);
1425 ok(l==2147483647, "wrong value %d\n", l);
1426 ok(errno == EBADF || broken(errno == 0), "wrong errno %d\n", errno);
1427 errno = EBADF;
1428 l = strtol("-2147483648L", &e, 0);
1429 ok(l==-2147483647L - 1, "wrong value %d\n", l);
1430 ok(errno == EBADF || broken(errno == 0), "wrong errno %d\n", errno);
1431 errno = EBADF;
1432 ul = strtoul("4294967295UL", &e, 0);
1433 ok(ul==4294967295ul, "wrong value %u\n", ul);
1434 ok(errno == EBADF || broken(errno == 0), "wrong errno %d\n", errno);
1436 errno = 0;
1437 l = strtol("9223372036854775807L", &e, 0);
1438 ok(l==2147483647, "wrong value %d\n", l);
1439 ok(errno == ERANGE, "wrong errno %d\n", errno);
1440 errno = 0;
1441 ul = strtoul("9223372036854775807L", &e, 0);
1442 ok(ul==4294967295ul, "wrong value %u\n", ul);
1443 ok(errno == ERANGE, "wrong errno %d\n", errno);
1445 errno = 0;
1446 ul = strtoul("-2", NULL, 0);
1447 ok(ul == -2, "wrong value %u\n", ul);
1448 ok(errno == 0, "wrong errno %d\n", errno);
1450 errno = 0;
1451 ul = strtoul("-4294967294", NULL, 0);
1452 ok(ul == 2, "wrong value %u\n", ul);
1453 ok(errno == 0, "wrong errno %d\n", errno);
1455 errno = 0;
1456 ul = strtoul("-4294967295", NULL, 0);
1457 ok(ul==1, "wrong value %u\n", ul);
1458 ok(errno == 0, "wrong errno %d\n", errno);
1460 errno = 0;
1461 ul = strtoul("-4294967296", NULL, 0);
1462 ok(ul == 1, "wrong value %u\n", ul);
1463 ok(errno == ERANGE, "wrong errno %d\n", errno);
1465 errno = 0;
1466 l = strtol(neg, &e, 0);
1467 ok(l == 0, "wrong value %d\n", l);
1468 ok(errno == 0, "wrong errno %d\n", errno);
1469 ok(e == neg, "e = %p, neg = %p\n", e, neg);
1472 static void test_strnlen(void)
1474 static const char str[] = "string";
1475 size_t res;
1477 if(!p_strnlen) {
1478 win_skip("strnlen not found\n");
1479 return;
1482 res = p_strnlen(str, 20);
1483 ok(res == 6, "Returned length = %d\n", (int)res);
1485 res = p_strnlen(str, 3);
1486 ok(res == 3, "Returned length = %d\n", (int)res);
1488 res = p_strnlen(NULL, 0);
1489 ok(res == 0, "Returned length = %d\n", (int)res);
1492 static void test__strtoi64(void)
1494 static const char no1[] = "31923";
1495 static const char no2[] = "-213312";
1496 static const char no3[] = "12aa";
1497 static const char no4[] = "abc12";
1498 static const char overflow[] = "99999999999999999999";
1499 static const char neg_overflow[] = "-99999999999999999999";
1500 static const char hex[] = "0x123";
1501 static const char oct[] = "000123";
1502 static const char blanks[] = " 12 212.31";
1504 __int64 res;
1505 unsigned __int64 ures;
1506 char *endpos;
1508 if(!p_strtoi64 || !p_strtoui64) {
1509 win_skip("_strtoi64 or _strtoui64 not found\n");
1510 return;
1513 errno = 0xdeadbeef;
1514 res = p_strtoi64(no1, NULL, 10);
1515 ok(res == 31923, "res != 31923\n");
1516 res = p_strtoi64(no2, NULL, 10);
1517 ok(res == -213312, "res != -213312\n");
1518 res = p_strtoi64(no3, NULL, 10);
1519 ok(res == 12, "res != 12\n");
1520 res = p_strtoi64(no4, &endpos, 10);
1521 ok(res == 0, "res != 0\n");
1522 ok(endpos == no4, "Scanning was not stopped on first character\n");
1523 res = p_strtoi64(hex, &endpos, 10);
1524 ok(res == 0, "res != 0\n");
1525 ok(endpos == hex+1, "Incorrect endpos (%p-%p)\n", hex, endpos);
1526 res = p_strtoi64(oct, &endpos, 10);
1527 ok(res == 123, "res != 123\n");
1528 ok(endpos == oct+strlen(oct), "Incorrect endpos (%p-%p)\n", oct, endpos);
1529 res = p_strtoi64(blanks, &endpos, 10);
1530 ok(res == 12, "res != 12\n");
1531 ok(endpos == blanks+10, "Incorrect endpos (%p-%p)\n", blanks, endpos);
1532 ok(errno == 0xdeadbeef, "errno = %x\n", errno);
1534 errno = 0xdeadbeef;
1535 res = p_strtoi64(overflow, &endpos, 10);
1536 ok(res == _I64_MAX, "res != _I64_MAX\n");
1537 ok(endpos == overflow+strlen(overflow), "Incorrect endpos (%p-%p)\n", overflow, endpos);
1538 ok(errno == ERANGE, "errno = %x\n", errno);
1540 errno = 0xdeadbeef;
1541 res = p_strtoi64(neg_overflow, &endpos, 10);
1542 ok(res == _I64_MIN, "res != _I64_MIN\n");
1543 ok(endpos == neg_overflow+strlen(neg_overflow), "Incorrect endpos (%p-%p)\n", neg_overflow, endpos);
1544 ok(errno == ERANGE, "errno = %x\n", errno);
1546 errno = 0xdeadbeef;
1547 res = p_strtoi64(no1, &endpos, 16);
1548 ok(res == 203043, "res != 203043\n");
1549 ok(endpos == no1+strlen(no1), "Incorrect endpos (%p-%p)\n", no1, endpos);
1550 res = p_strtoi64(no2, &endpos, 16);
1551 ok(res == -2175762, "res != -2175762\n");
1552 ok(endpos == no2+strlen(no2), "Incorrect endpos (%p-%p)\n", no2, endpos);
1553 res = p_strtoi64(no3, &endpos, 16);
1554 ok(res == 4778, "res != 4778\n");
1555 ok(endpos == no3+strlen(no3), "Incorrect endpos (%p-%p)\n", no3, endpos);
1556 res = p_strtoi64(no4, &endpos, 16);
1557 ok(res == 703506, "res != 703506\n");
1558 ok(endpos == no4+strlen(no4), "Incorrect endpos (%p-%p)\n", no4, endpos);
1559 res = p_strtoi64(hex, &endpos, 16);
1560 ok(res == 291, "res != 291\n");
1561 ok(endpos == hex+strlen(hex), "Incorrect endpos (%p-%p)\n", hex, endpos);
1562 res = p_strtoi64(oct, &endpos, 16);
1563 ok(res == 291, "res != 291\n");
1564 ok(endpos == oct+strlen(oct), "Incorrect endpos (%p-%p)\n", oct, endpos);
1565 res = p_strtoi64(blanks, &endpos, 16);
1566 ok(res == 18, "res != 18\n");
1567 ok(endpos == blanks+10, "Incorrect endpos (%p-%p)\n", blanks, endpos);
1568 ok(errno == 0xdeadbeef, "errno = %x\n", errno);
1570 errno = 0xdeadbeef;
1571 res = p_strtoi64(hex, &endpos, 36);
1572 ok(res == 1541019, "res != 1541019\n");
1573 ok(endpos == hex+strlen(hex), "Incorrect endpos (%p-%p)\n", hex, endpos);
1574 ok(errno == 0xdeadbeef, "errno = %x\n", errno);
1576 errno = 0xdeadbeef;
1577 res = p_strtoi64(no1, &endpos, 0);
1578 ok(res == 31923, "res != 31923\n");
1579 ok(endpos == no1+strlen(no1), "Incorrect endpos (%p-%p)\n", no1, endpos);
1580 res = p_strtoi64(no2, &endpos, 0);
1581 ok(res == -213312, "res != -213312\n");
1582 ok(endpos == no2+strlen(no2), "Incorrect endpos (%p-%p)\n", no2, endpos);
1583 res = p_strtoi64(no3, &endpos, 10);
1584 ok(res == 12, "res != 12\n");
1585 ok(endpos == no3+2, "Incorrect endpos (%p-%p)\n", no3, endpos);
1586 res = p_strtoi64(no4, &endpos, 10);
1587 ok(res == 0, "res != 0\n");
1588 ok(endpos == no4, "Incorrect endpos (%p-%p)\n", no4, endpos);
1589 res = p_strtoi64(hex, &endpos, 10);
1590 ok(res == 0, "res != 0\n");
1591 ok(endpos == hex+1, "Incorrect endpos (%p-%p)\n", hex, endpos);
1592 res = p_strtoi64(oct, &endpos, 10);
1593 ok(res == 123, "res != 123\n");
1594 ok(endpos == oct+strlen(oct), "Incorrect endpos (%p-%p)\n", oct, endpos);
1595 res = p_strtoi64(blanks, &endpos, 10);
1596 ok(res == 12, "res != 12\n");
1597 ok(endpos == blanks+10, "Incorrect endpos (%p-%p)\n", blanks, endpos);
1598 ok(errno == 0xdeadbeef, "errno = %x\n", errno);
1600 errno = 0xdeadbeef;
1601 ures = p_strtoui64(no1, &endpos, 0);
1602 ok(ures == 31923, "ures != 31923\n");
1603 ok(endpos == no1+strlen(no1), "Incorrect endpos (%p-%p)\n", no1, endpos);
1604 ures = p_strtoui64(no2, &endpos, 0);
1605 ok(ures == -213312, "ures != -213312\n");
1606 ok(endpos == no2+strlen(no2), "Incorrect endpos (%p-%p)\n", no2, endpos);
1607 ures = p_strtoui64(no3, &endpos, 10);
1608 ok(ures == 12, "ures != 12\n");
1609 ok(endpos == no3+2, "Incorrect endpos (%p-%p)\n", no3, endpos);
1610 ures = p_strtoui64(no4, &endpos, 10);
1611 ok(ures == 0, "ures != 0\n");
1612 ok(endpos == no4, "Incorrect endpos (%p-%p)\n", no4, endpos);
1613 ures = p_strtoui64(hex, &endpos, 10);
1614 ok(ures == 0, "ures != 0\n");
1615 ok(endpos == hex+1, "Incorrect endpos (%p-%p)\n", hex, endpos);
1616 ures = p_strtoui64(oct, &endpos, 10);
1617 ok(ures == 123, "ures != 123\n");
1618 ok(endpos == oct+strlen(oct), "Incorrect endpos (%p-%p)\n", oct, endpos);
1619 ures = p_strtoui64(blanks, &endpos, 10);
1620 ok(ures == 12, "ures != 12\n");
1621 ok(endpos == blanks+10, "Incorrect endpos (%p-%p)\n", blanks, endpos);
1622 ok(errno == 0xdeadbeef, "errno = %x\n", errno);
1624 errno = 0xdeadbeef;
1625 ures = p_strtoui64(overflow, &endpos, 10);
1626 ok(ures == _UI64_MAX, "ures != _UI64_MAX\n");
1627 ok(endpos == overflow+strlen(overflow), "Incorrect endpos (%p-%p)\n", overflow, endpos);
1628 ok(errno == ERANGE, "errno = %x\n", errno);
1630 errno = 0xdeadbeef;
1631 ures = p_strtoui64(neg_overflow, &endpos, 10);
1632 ok(ures == 1, "ures != 1\n");
1633 ok(endpos == neg_overflow+strlen(neg_overflow), "Incorrect endpos (%p-%p)\n", neg_overflow, endpos);
1634 ok(errno == ERANGE, "errno = %x\n", errno);
1637 static inline BOOL almost_equal(double d1, double d2) {
1638 if(d1-d2>-1e-30 && d1-d2<1e-30)
1639 return TRUE;
1640 return FALSE;
1643 static void test__strtod(void)
1645 const char double1[] = "12.1";
1646 const char double2[] = "-13.721";
1647 const char double3[] = "INF";
1648 const char double4[] = ".21e12";
1649 const char double5[] = "214353e-3";
1650 const char overflow[] = "1d9999999999999999999";
1651 const char white_chars[] = " d10";
1653 char *end;
1654 double d;
1656 d = strtod(double1, &end);
1657 ok(almost_equal(d, 12.1), "d = %lf\n", d);
1658 ok(end == double1+4, "incorrect end (%d)\n", (int)(end-double1));
1660 d = strtod(double2, &end);
1661 ok(almost_equal(d, -13.721), "d = %lf\n", d);
1662 ok(end == double2+7, "incorrect end (%d)\n", (int)(end-double2));
1664 d = strtod(double3, &end);
1665 ok(almost_equal(d, 0), "d = %lf\n", d);
1666 ok(end == double3, "incorrect end (%d)\n", (int)(end-double3));
1668 d = strtod(double4, &end);
1669 ok(almost_equal(d, 210000000000.0), "d = %lf\n", d);
1670 ok(end == double4+6, "incorrect end (%d)\n", (int)(end-double4));
1672 d = strtod(double5, &end);
1673 ok(almost_equal(d, 214.353), "d = %lf\n", d);
1674 ok(end == double5+9, "incorrect end (%d)\n", (int)(end-double5));
1676 d = strtod("12.1d2", NULL);
1677 ok(almost_equal(d, 12.1e2), "d = %lf\n", d);
1679 d = strtod(white_chars, &end);
1680 ok(almost_equal(d, 0), "d = %lf\n", d);
1681 ok(end == white_chars, "incorrect end (%d)\n", (int)(end-white_chars));
1683 if (!p__strtod_l)
1684 win_skip("_strtod_l not found\n");
1685 else
1687 errno = EBADF;
1688 d = strtod(NULL, NULL);
1689 ok(almost_equal(d, 0.0), "d = %lf\n", d);
1690 ok(errno == EINVAL, "errno = %x\n", errno);
1692 errno = EBADF;
1693 end = (char *)0xdeadbeef;
1694 d = strtod(NULL, &end);
1695 ok(almost_equal(d, 0.0), "d = %lf\n", d);
1696 ok(errno == EINVAL, "errno = %x\n", errno);
1697 todo_wine ok(!end, "incorrect end ptr %p\n", end);
1699 errno = EBADF;
1700 d = p__strtod_l(NULL, NULL, NULL);
1701 ok(almost_equal(d, 0.0), "d = %lf\n", d);
1702 ok(errno == EINVAL, "errno = %x\n", errno);
1705 /* Set locale with non '.' decimal point (',') */
1706 if(!setlocale(LC_ALL, "Polish")) {
1707 win_skip("system with limited locales\n");
1708 return;
1711 d = strtod("12.1", NULL);
1712 ok(almost_equal(d, 12.0), "d = %lf\n", d);
1714 d = strtod("12,1", NULL);
1715 ok(almost_equal(d, 12.1), "d = %lf\n", d);
1717 setlocale(LC_ALL, "C");
1719 /* Precision tests */
1720 d = strtod("0.1", NULL);
1721 ok(almost_equal(d, 0.1), "d = %lf\n", d);
1722 d = strtod("-0.1", NULL);
1723 ok(almost_equal(d, -0.1), "d = %lf\n", d);
1724 d = strtod("0.1281832188491894198128921", NULL);
1725 ok(almost_equal(d, 0.1281832188491894198128921), "d = %lf\n", d);
1726 d = strtod("0.82181281288121", NULL);
1727 ok(almost_equal(d, 0.82181281288121), "d = %lf\n", d);
1728 d = strtod("21921922352523587651128218821", NULL);
1729 ok(almost_equal(d, 21921922352523587651128218821.0), "d = %lf\n", d);
1730 d = strtod("0.1d238", NULL);
1731 ok(almost_equal(d, 0.1e238L), "d = %lf\n", d);
1732 d = strtod("0.1D-4736", NULL);
1733 ok(almost_equal(d, 0.1e-4736L), "d = %lf\n", d);
1735 errno = 0xdeadbeef;
1736 strtod(overflow, &end);
1737 ok(errno == ERANGE, "errno = %x\n", errno);
1738 ok(end == overflow+21, "incorrect end (%d)\n", (int)(end-overflow));
1740 errno = 0xdeadbeef;
1741 strtod("-1d309", NULL);
1742 ok(errno == ERANGE, "errno = %x\n", errno);
1745 static void test_mbstowcs(void)
1747 static const wchar_t wSimple[] = { 't','e','x','t',0 };
1748 static const wchar_t wHiragana[] = { 0x3042,0x3043,0 };
1749 static const char mSimple[] = "text";
1750 static const char mHiragana[] = { 0x82,0xa0,0x82,0xa1,0 };
1752 const wchar_t *pwstr;
1753 wchar_t wOut[6];
1754 char mOut[6];
1755 size_t ret;
1756 int err;
1757 const char *pmbstr;
1758 mbstate_t state;
1760 wOut[4] = '!'; wOut[5] = '\0';
1761 mOut[4] = '!'; mOut[5] = '\0';
1763 if(pmbstowcs_s) {
1764 /* crashes on some systems */
1765 errno = 0xdeadbeef;
1766 ret = mbstowcs(wOut, NULL, 4);
1767 ok(ret == -1, "mbstowcs did not return -1\n");
1768 ok(errno == EINVAL, "errno = %d\n", errno);
1771 ret = mbstowcs(NULL, mSimple, 0);
1772 ok(ret == 4, "mbstowcs did not return 4\n");
1774 ret = mbstowcs(wOut, mSimple, 4);
1775 ok(ret == 4, "mbstowcs did not return 4\n");
1776 ok(!memcmp(wOut, wSimple, 4*sizeof(wchar_t)), "wOut = %s\n", wine_dbgstr_w(wOut));
1777 ok(wOut[4] == '!', "wOut[4] != \'!\'\n");
1779 ret = wcstombs(NULL, wSimple, 0);
1780 ok(ret == 4, "wcstombs did not return 4\n");
1782 ret = wcstombs(mOut, wSimple, 6);
1783 ok(ret == 4, "wcstombs did not return 4\n");
1784 ok(!memcmp(mOut, mSimple, 5*sizeof(char)), "mOut = %s\n", mOut);
1786 ret = wcstombs(mOut, wSimple, 2);
1787 ok(ret == 2, "wcstombs did not return 2\n");
1788 ok(!memcmp(mOut, mSimple, 5*sizeof(char)), "mOut = %s\n", mOut);
1790 if(!setlocale(LC_ALL, "Japanese_Japan.932")) {
1791 win_skip("Japanese_Japan.932 locale not available\n");
1792 return;
1795 ret = mbstowcs(wOut, mHiragana, 6);
1796 ok(ret == 2, "mbstowcs did not return 2\n");
1797 ok(!memcmp(wOut, wHiragana, sizeof(wHiragana)), "wOut = %s\n", wine_dbgstr_w(wOut));
1799 ret = wcstombs(mOut, wHiragana, 6);
1800 ok(ret == 4, "wcstombs did not return 4\n");
1801 ok(!memcmp(mOut, mHiragana, sizeof(mHiragana)), "mOut = %s\n", mOut);
1803 if(!pmbstowcs_s || !pwcstombs_s) {
1804 setlocale(LC_ALL, "C");
1805 win_skip("mbstowcs_s or wcstombs_s not available\n");
1806 return;
1809 err = pmbstowcs_s(&ret, wOut, 6, mSimple, _TRUNCATE);
1810 ok(err == 0, "err = %d\n", err);
1811 ok(ret == 5, "mbstowcs_s did not return 5\n");
1812 ok(!memcmp(wOut, wSimple, sizeof(wSimple)), "wOut = %s\n", wine_dbgstr_w(wOut));
1814 err = pmbstowcs_s(&ret, wOut, 6, mHiragana, _TRUNCATE);
1815 ok(err == 0, "err = %d\n", err);
1816 ok(ret == 3, "mbstowcs_s did not return 3\n");
1817 ok(!memcmp(wOut, wHiragana, sizeof(wHiragana)), "wOut = %s\n", wine_dbgstr_w(wOut));
1819 err = pmbstowcs_s(&ret, NULL, 0, mHiragana, 1);
1820 ok(err == 0, "err = %d\n", err);
1821 ok(ret == 3, "mbstowcs_s did not return 3\n");
1823 err = pwcstombs_s(&ret, mOut, 6, wSimple, _TRUNCATE);
1824 ok(err == 0, "err = %d\n", err);
1825 ok(ret == 5, "wcstombs_s did not return 5\n");
1826 ok(!memcmp(mOut, mSimple, sizeof(mSimple)), "mOut = %s\n", mOut);
1828 err = pwcstombs_s(&ret, mOut, 6, wHiragana, _TRUNCATE);
1829 ok(err == 0, "err = %d\n", err);
1830 ok(ret == 5, "wcstombs_s did not return 5\n");
1831 ok(!memcmp(mOut, mHiragana, sizeof(mHiragana)), "mOut = %s\n", mOut);
1833 err = pwcstombs_s(&ret, NULL, 0, wHiragana, 1);
1834 ok(err == 0, "err = %d\n", err);
1835 ok(ret == 5, "wcstombs_s did not return 5\n");
1837 if(!pwcsrtombs) {
1838 setlocale(LC_ALL, "C");
1839 win_skip("wcsrtombs not available\n");
1840 return;
1843 pwstr = wSimple;
1844 err = -3;
1845 ret = pwcsrtombs(mOut, &pwstr, 4, &err);
1846 ok(ret == 4, "wcsrtombs did not return 4\n");
1847 ok(err == 0, "err = %d\n", err);
1848 ok(pwstr == wSimple+4, "pwstr = %p (wszSimple = %p)\n", pwstr, wSimple);
1849 ok(!memcmp(mOut, mSimple, ret), "mOut = %s\n", mOut);
1851 pwstr = wSimple;
1852 ret = pwcsrtombs(mOut, &pwstr, 5, NULL);
1853 ok(ret == 4, "wcsrtombs did not return 4\n");
1854 ok(pwstr == NULL, "pwstr != NULL\n");
1855 ok(!memcmp(mOut, mSimple, sizeof(mSimple)), "mOut = %s\n", mOut);
1857 if(!p_mbsrtowcs) {
1858 setlocale(LC_ALL, "C");
1859 win_skip("mbsrtowcs not available\n");
1860 return;
1863 pmbstr = mHiragana;
1864 ret = p_mbsrtowcs(wOut, &pmbstr, 6, NULL);
1865 ok(ret == 2, "mbsrtowcs did not return 2\n");
1866 ok(!memcmp(wOut, wHiragana, sizeof(wHiragana)), "wOut = %s\n", wine_dbgstr_w(wOut));
1867 ok(!pmbstr, "pmbstr != NULL\n");
1869 state = mHiragana[0];
1870 pmbstr = mHiragana+1;
1871 ret = p_mbsrtowcs(wOut, &pmbstr, 6, &state);
1872 ok(ret == 2, "mbsrtowcs did not return 2\n");
1873 ok(wOut[0] == 0x3042, "wOut[0] = %x\n", wOut[0]);
1874 ok(wOut[1] == 0xff61, "wOut[1] = %x\n", wOut[1]);
1875 ok(wOut[2] == 0, "wOut[2] = %x\n", wOut[2]);
1876 ok(!pmbstr, "pmbstr != NULL\n");
1878 errno = EBADF;
1879 ret = p_mbsrtowcs(wOut, NULL, 6, &state);
1880 ok(ret == -1, "mbsrtowcs did not return -1\n");
1881 ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
1883 setlocale(LC_ALL, "C");
1886 static void test_gcvt(void)
1888 char buf[1024], *res;
1889 errno_t err;
1891 if(!p_gcvt_s) {
1892 win_skip("Skipping _gcvt tests\n");
1893 return;
1896 errno = 0;
1897 res = _gcvt(1.2, -1, buf);
1898 ok(res == NULL, "res != NULL\n");
1899 ok(errno == ERANGE, "errno = %d\n", errno);
1901 errno = 0;
1902 res = _gcvt(1.2, 5, NULL);
1903 ok(res == NULL, "res != NULL\n");
1904 ok(errno == EINVAL, "errno = %d\n", errno);
1906 res = gcvt(1.2, 5, buf);
1907 ok(res == buf, "res != buf\n");
1908 ok(!strcmp(buf, "1.2"), "buf = %s\n", buf);
1910 buf[0] = 'x';
1911 err = p_gcvt_s(buf, 5, 1.2, 10);
1912 ok(err == ERANGE, "err = %d\n", err);
1913 ok(buf[0] == '\0', "buf[0] = %c\n", buf[0]);
1915 buf[0] = 'x';
1916 err = p_gcvt_s(buf, 4, 123456, 2);
1917 ok(err == ERANGE, "err = %d\n", err);
1918 ok(buf[0] == '\0', "buf[0] = %c\n", buf[0]);
1921 static void test__itoa_s(void)
1923 errno_t ret;
1924 char buffer[33];
1926 if (!p_itoa_s)
1928 win_skip("Skipping _itoa_s tests\n");
1929 return;
1932 errno = EBADF;
1933 ret = p_itoa_s(0, NULL, 0, 0);
1934 ok(ret == EINVAL, "Expected _itoa_s to return EINVAL, got %d\n", ret);
1935 ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
1937 memset(buffer, 'X', sizeof(buffer));
1938 errno = EBADF;
1939 ret = p_itoa_s(0, buffer, 0, 0);
1940 ok(ret == EINVAL, "Expected _itoa_s to return EINVAL, got %d\n", ret);
1941 ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
1942 ok(buffer[0] == 'X', "Expected the output buffer to be untouched\n");
1944 memset(buffer, 'X', sizeof(buffer));
1945 errno = EBADF;
1946 ret = p_itoa_s(0, buffer, sizeof(buffer), 0);
1947 ok(ret == EINVAL, "Expected _itoa_s to return EINVAL, got %d\n", ret);
1948 ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
1949 ok(buffer[0] == '\0', "Expected the output buffer to be null terminated\n");
1951 memset(buffer, 'X', sizeof(buffer));
1952 errno = EBADF;
1953 ret = p_itoa_s(0, buffer, sizeof(buffer), 64);
1954 ok(ret == EINVAL, "Expected _itoa_s to return EINVAL, got %d\n", ret);
1955 ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
1956 ok(buffer[0] == '\0', "Expected the output buffer to be null terminated\n");
1958 memset(buffer, 'X', sizeof(buffer));
1959 errno = EBADF;
1960 ret = p_itoa_s(12345678, buffer, 4, 10);
1961 ok(ret == ERANGE, "Expected _itoa_s to return ERANGE, got %d\n", ret);
1962 ok(errno == ERANGE, "Expected errno to be ERANGE, got %d\n", errno);
1963 ok(!memcmp(buffer, "\000765", 4),
1964 "Expected the output buffer to be null terminated with truncated output\n");
1966 memset(buffer, 'X', sizeof(buffer));
1967 errno = EBADF;
1968 ret = p_itoa_s(12345678, buffer, 8, 10);
1969 ok(ret == ERANGE, "Expected _itoa_s to return ERANGE, got %d\n", ret);
1970 ok(errno == ERANGE, "Expected errno to be ERANGE, got %d\n", errno);
1971 ok(!memcmp(buffer, "\0007654321", 8),
1972 "Expected the output buffer to be null terminated with truncated output\n");
1974 memset(buffer, 'X', sizeof(buffer));
1975 errno = EBADF;
1976 ret = p_itoa_s(-12345678, buffer, 9, 10);
1977 ok(ret == ERANGE, "Expected _itoa_s to return ERANGE, got %d\n", ret);
1978 ok(errno == ERANGE, "Expected errno to be ERANGE, got %d\n", errno);
1979 ok(!memcmp(buffer, "\00087654321", 9),
1980 "Expected the output buffer to be null terminated with truncated output\n");
1982 ret = p_itoa_s(12345678, buffer, 9, 10);
1983 ok(ret == 0, "Expected _itoa_s to return 0, got %d\n", ret);
1984 ok(!strcmp(buffer, "12345678"),
1985 "Expected output buffer string to be \"12345678\", got \"%s\"\n",
1986 buffer);
1988 ret = p_itoa_s(43690, buffer, sizeof(buffer), 2);
1989 ok(ret == 0, "Expected _itoa_s to return 0, got %d\n", ret);
1990 ok(!strcmp(buffer, "1010101010101010"),
1991 "Expected output buffer string to be \"1010101010101010\", got \"%s\"\n",
1992 buffer);
1994 ret = p_itoa_s(1092009, buffer, sizeof(buffer), 36);
1995 ok(ret == 0, "Expected _itoa_s to return 0, got %d\n", ret);
1996 ok(!strcmp(buffer, "nell"),
1997 "Expected output buffer string to be \"nell\", got \"%s\"\n",
1998 buffer);
2000 ret = p_itoa_s(5704, buffer, sizeof(buffer), 18);
2001 ok(ret == 0, "Expected _itoa_s to return 0, got %d\n", ret);
2002 ok(!strcmp(buffer, "hag"),
2003 "Expected output buffer string to be \"hag\", got \"%s\"\n",
2004 buffer);
2006 ret = p_itoa_s(-12345678, buffer, sizeof(buffer), 10);
2007 ok(ret == 0, "Expected _itoa_s to return 0, got %d\n", ret);
2008 ok(!strcmp(buffer, "-12345678"),
2009 "Expected output buffer string to be \"-12345678\", got \"%s\"\n",
2010 buffer);
2012 itoa(100, buffer, 100);
2013 ok(!strcmp(buffer, "10"),
2014 "Expected output buffer string to be \"10\", got \"%s\"\n", buffer);
2017 static void test__strlwr_s(void)
2019 errno_t ret;
2020 char buffer[20];
2022 if (!p_strlwr_s)
2024 win_skip("Skipping _strlwr_s tests\n");
2025 return;
2028 errno = EBADF;
2029 ret = p_strlwr_s(NULL, 0);
2030 ok(ret == EINVAL, "Expected _strlwr_s to return EINVAL, got %d\n", ret);
2031 ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
2033 errno = EBADF;
2034 ret = p_strlwr_s(NULL, sizeof(buffer));
2035 ok(ret == EINVAL, "Expected _strlwr_s to return EINVAL, got %d\n", ret);
2036 ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
2038 errno = EBADF;
2039 ret = p_strlwr_s(buffer, 0);
2040 ok(ret == EINVAL, "Expected _strlwr_s to return EINVAL, got %d\n", ret);
2041 ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
2043 strcpy(buffer, "GoRrIsTeR");
2044 errno = EBADF;
2045 ret = p_strlwr_s(buffer, 5);
2046 ok(ret == EINVAL, "Expected _strlwr_s to return EINVAL, got %d\n", ret);
2047 ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
2048 ok(!memcmp(buffer, "\0oRrIsTeR", sizeof("\0oRrIsTeR")),
2049 "Expected the output buffer to be \"\\0oRrIsTeR\"\n");
2051 strcpy(buffer, "GoRrIsTeR");
2052 errno = EBADF;
2053 ret = p_strlwr_s(buffer, sizeof("GoRrIsTeR") - 1);
2054 ok(ret == EINVAL, "Expected _strlwr_s to return EINVAL, got %d\n", ret);
2055 ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
2056 ok(!memcmp(buffer, "\0oRrIsTeR", sizeof("\0oRrIsTeR")),
2057 "Expected the output buffer to be \"\\0oRrIsTeR\"\n");
2059 strcpy(buffer, "GoRrIsTeR");
2060 ret = p_strlwr_s(buffer, sizeof("GoRrIsTeR"));
2061 ok(ret == 0, "Expected _strlwr_s to return 0, got %d\n", ret);
2062 ok(!strcmp(buffer, "gorrister"),
2063 "Expected the output buffer to be \"gorrister\", got \"%s\"\n",
2064 buffer);
2066 memcpy(buffer, "GoRrIsTeR\0ELLEN", sizeof("GoRrIsTeR\0ELLEN"));
2067 ret = p_strlwr_s(buffer, sizeof(buffer));
2068 ok(ret == 0, "Expected _strlwr_s to return 0, got %d\n", ret);
2069 ok(!memcmp(buffer, "gorrister\0ELLEN", sizeof("gorrister\0ELLEN")),
2070 "Expected the output buffer to be \"gorrister\\0ELLEN\", got \"%s\"\n",
2071 buffer);
2074 static void test_wcsncat_s(void)
2076 static wchar_t abcW[] = {'a','b','c',0};
2077 int ret;
2078 wchar_t dst[4];
2079 wchar_t src[4];
2081 if (!p_wcsncat_s)
2083 win_skip("skipping wcsncat_s tests\n");
2084 return;
2087 memcpy(src, abcW, sizeof(abcW));
2088 dst[0] = 0;
2089 ret = p_wcsncat_s(NULL, 4, src, 4);
2090 ok(ret == EINVAL, "err = %d\n", ret);
2091 ret = p_wcsncat_s(dst, 0, src, 4);
2092 ok(ret == EINVAL, "err = %d\n", ret);
2093 ret = p_wcsncat_s(dst, 0, src, _TRUNCATE);
2094 ok(ret == EINVAL, "err = %d\n", ret);
2095 ret = p_wcsncat_s(dst, 4, NULL, 0);
2096 ok(ret == 0, "err = %d\n", ret);
2098 dst[0] = 0;
2099 ret = p_wcsncat_s(dst, 2, src, 4);
2100 ok(ret == ERANGE, "err = %d\n", ret);
2102 dst[0] = 0;
2103 ret = p_wcsncat_s(dst, 2, src, _TRUNCATE);
2104 ok(ret == STRUNCATE, "err = %d\n", ret);
2105 ok(dst[0] == 'a' && dst[1] == 0, "dst is %s\n", wine_dbgstr_w(dst));
2107 memcpy(dst, abcW, sizeof(abcW));
2108 dst[3] = 'd';
2109 ret = p_wcsncat_s(dst, 4, src, 4);
2110 ok(ret == EINVAL, "err = %d\n", ret);
2113 static void test__mbsnbcat_s(void)
2115 unsigned char dest[16];
2116 const unsigned char first[] = "dinosaur";
2117 const unsigned char second[] = "duck";
2118 int ret;
2120 if (!p_mbsnbcat_s)
2122 win_skip("Skipping _mbsnbcat_s tests\n");
2123 return;
2126 /* Test invalid arguments. */
2127 ret = p_mbsnbcat_s(NULL, 0, NULL, 0);
2128 ok(ret == 0, "Expected _mbsnbcat_s to return 0, got %d\n", ret);
2130 errno = EBADF;
2131 ret = p_mbsnbcat_s(NULL, 10, NULL, 0);
2132 ok(ret == EINVAL, "Expected _mbsnbcat_s to return EINVAL, got %d\n", ret);
2133 ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
2135 errno = EBADF;
2136 ret = p_mbsnbcat_s(NULL, 0, NULL, 10);
2137 ok(ret == EINVAL, "Expected _mbsnbcat_s to return EINVAL, got %d\n", ret);
2138 ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
2140 memset(dest, 'X', sizeof(dest));
2141 errno = EBADF;
2142 ret = p_mbsnbcat_s(dest, 0, NULL, 0);
2143 ok(ret == EINVAL, "Expected _mbsnbcat_s to return EINVAL, got %d\n", ret);
2144 ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
2145 ok(dest[0] == 'X', "Expected the output buffer to be untouched\n");
2147 memset(dest, 'X', sizeof(dest));
2148 errno = EBADF;
2149 ret = p_mbsnbcat_s(dest, 0, second, 0);
2150 ok(ret == EINVAL, "Expected _mbsnbcat_s to return EINVAL, got %d\n", ret);
2151 ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
2152 ok(dest[0] == 'X', "Expected the output buffer to be untouched\n");
2154 memset(dest, 'X', sizeof(dest));
2155 errno = EBADF;
2156 ret = p_mbsnbcat_s(dest, sizeof(dest), NULL, 0);
2157 ok(ret == EINVAL, "Expected _mbsnbcat_s to return EINVAL, got %d\n", ret);
2158 ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
2159 ok(dest[0] == '\0', "Expected the output buffer to be null terminated\n");
2161 memset(dest, 'X', sizeof(dest));
2162 errno = EBADF;
2163 ret = p_mbsnbcat_s(dest, sizeof(dest), NULL, 10);
2164 ok(ret == EINVAL, "Expected _mbsnbcat_s to return EINVAL, got %d\n", ret);
2165 ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
2166 ok(dest[0] == '\0', "Expected the output buffer to be null terminated\n");
2168 memset(dest, 'X', sizeof(dest));
2169 dest[0] = '\0';
2170 ret = p_mbsnbcat_s(dest, sizeof(dest), second, sizeof(second));
2171 ok(ret == 0, "Expected _mbsnbcat_s to return 0, got %d\n", ret);
2172 ok(!memcmp(dest, second, sizeof(second)),
2173 "Expected the output buffer string to be \"duck\"\n");
2175 /* Test source truncation behavior. */
2176 memset(dest, 'X', sizeof(dest));
2177 memcpy(dest, first, sizeof(first));
2178 ret = p_mbsnbcat_s(dest, sizeof(dest), second, 0);
2179 ok(ret == 0, "Expected _mbsnbcat_s to return 0, got %d\n", ret);
2180 ok(!memcmp(dest, first, sizeof(first)),
2181 "Expected the output buffer string to be \"dinosaur\"\n");
2183 memset(dest, 'X', sizeof(dest));
2184 memcpy(dest, first, sizeof(first));
2185 ret = p_mbsnbcat_s(dest, sizeof(dest), second, sizeof(second));
2186 ok(ret == 0, "Expected _mbsnbcat_s to return 0, got %d\n", ret);
2187 ok(!memcmp(dest, "dinosaurduck", sizeof("dinosaurduck")),
2188 "Expected the output buffer string to be \"dinosaurduck\"\n");
2190 memset(dest, 'X', sizeof(dest));
2191 memcpy(dest, first, sizeof(first));
2192 ret = p_mbsnbcat_s(dest, sizeof(dest), second, sizeof(second) + 1);
2193 ok(ret == 0, "Expected _mbsnbcat_s to return 0, got %d\n", ret);
2194 ok(!memcmp(dest, "dinosaurduck", sizeof("dinosaurduck")),
2195 "Expected the output buffer string to be \"dinosaurduck\"\n");
2197 memset(dest, 'X', sizeof(dest));
2198 memcpy(dest, first, sizeof(first));
2199 ret = p_mbsnbcat_s(dest, sizeof(dest), second, sizeof(second) - 1);
2200 ok(ret == 0, "Expected _mbsnbcat_s to return 0, got %d\n", ret);
2201 ok(!memcmp(dest, "dinosaurduck", sizeof("dinosaurduck")),
2202 "Expected the output buffer string to be \"dinosaurduck\"\n");
2204 memset(dest, 'X', sizeof(dest));
2205 memcpy(dest, first, sizeof(first));
2206 ret = p_mbsnbcat_s(dest, sizeof(dest), second, sizeof(second) - 2);
2207 ok(ret == 0, "Expected _mbsnbcat_s to return 0, got %d\n", ret);
2208 ok(!memcmp(dest, "dinosaurduc", sizeof("dinosaurduc")),
2209 "Expected the output buffer string to be \"dinosaurduc\"\n");
2211 /* Test destination truncation behavior. */
2212 memset(dest, 'X', sizeof(dest));
2213 memcpy(dest, first, sizeof(first));
2214 errno = EBADF;
2215 ret = p_mbsnbcat_s(dest, sizeof(first) - 1, second, sizeof(second));
2216 ok(ret == EINVAL, "Expected _mbsnbcat_s to return EINVAL, got %d\n", ret);
2217 ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
2218 ok(!memcmp(dest, "\0inosaur", sizeof("\0inosaur") - 1),
2219 "Expected the output buffer string to be \"\\0inosaur\" without ending null terminator\n");
2221 memset(dest, 'X', sizeof(dest));
2222 memcpy(dest, first, sizeof(first));
2223 errno = EBADF;
2224 ret = p_mbsnbcat_s(dest, sizeof(first), second, sizeof(second));
2225 ok(ret == ERANGE, "Expected _mbsnbcat_s to return ERANGE, got %d\n", ret);
2226 ok(errno == ERANGE, "Expected errno to be ERANGE, got %d\n", errno);
2227 ok(!memcmp(dest, "\0inosaurd", sizeof("\0inosaurd") - 1),
2228 "Expected the output buffer string to be \"\\0inosaurd\" without ending null terminator\n");
2230 memset(dest, 'X', sizeof(dest));
2231 memcpy(dest, first, sizeof(first));
2232 errno = EBADF;
2233 ret = p_mbsnbcat_s(dest, sizeof(first) + 1, second, sizeof(second));
2234 ok(ret == ERANGE, "Expected _mbsnbcat_s to return ERANGE, got %d\n", ret);
2235 ok(errno == ERANGE, "Expected errno to be ERANGE, got %d\n", errno);
2236 ok(!memcmp(dest, "\0inosaurdu", sizeof("\0inosaurdu") - 1),
2237 "Expected the output buffer string to be \"\\0inosaurdu\" without ending null terminator\n");
2240 static void test__mbsupr_s(void)
2242 errno_t ret;
2243 unsigned char buffer[20];
2245 if (!p_mbsupr_s)
2247 win_skip("Skipping _mbsupr_s tests\n");
2248 return;
2251 errno = EBADF;
2252 ret = p_mbsupr_s(NULL, 0);
2253 ok(ret == 0, "Expected _mbsupr_s to return 0, got %d\n", ret);
2255 errno = EBADF;
2256 ret = p_mbsupr_s(NULL, sizeof(buffer));
2257 ok(ret == EINVAL, "Expected _mbsupr_s to return EINVAL, got %d\n", ret);
2258 ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
2260 errno = EBADF;
2261 ret = p_mbsupr_s(buffer, 0);
2262 ok(ret == EINVAL, "Expected _mbsupr_s to return EINVAL, got %d\n", ret);
2263 ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
2265 memcpy(buffer, "abcdefgh", sizeof("abcdefgh"));
2266 errno = EBADF;
2267 ret = p_mbsupr_s(buffer, sizeof("abcdefgh"));
2268 ok(ret == 0, "Expected _mbsupr_s to return 0, got %d\n", ret);
2269 ok(!memcmp(buffer, "ABCDEFGH", sizeof("ABCDEFGH")),
2270 "Expected the output buffer to be \"ABCDEFGH\", got \"%s\"\n",
2271 buffer);
2273 memcpy(buffer, "abcdefgh", sizeof("abcdefgh"));
2274 errno = EBADF;
2275 ret = p_mbsupr_s(buffer, sizeof(buffer));
2276 ok(ret == 0, "Expected _mbsupr_s to return 0, got %d\n", ret);
2277 ok(!memcmp(buffer, "ABCDEFGH", sizeof("ABCDEFGH")),
2278 "Expected the output buffer to be \"ABCDEFGH\", got \"%s\"\n",
2279 buffer);
2281 memcpy(buffer, "abcdefgh", sizeof("abcdefgh"));
2282 errno = EBADF;
2283 ret = p_mbsupr_s(buffer, 4);
2284 ok(ret == EINVAL, "Expected _mbsupr_s to return EINVAL, got %d\n", ret);
2285 ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
2287 memcpy(buffer, "abcdefgh\0ijklmnop", sizeof("abcdefgh\0ijklmnop"));
2288 errno = EBADF;
2289 ret = p_mbsupr_s(buffer, sizeof(buffer));
2290 ok(ret == 0, "Expected _mbsupr_s to return 0, got %d\n", ret);
2291 ok(!memcmp(buffer, "ABCDEFGH\0ijklmnop", sizeof("ABCDEFGH\0ijklmnop")),
2292 "Expected the output buffer to be \"ABCDEFGH\\0ijklmnop\", got \"%s\"\n",
2293 buffer);
2297 static void test__mbslwr_s(void)
2299 errno_t ret;
2300 unsigned char buffer[20];
2302 if (!p_mbslwr_s)
2304 win_skip("Skipping _mbslwr_s tests\n");
2305 return;
2308 errno = EBADF;
2309 ret = p_mbslwr_s(NULL, 0);
2310 ok(ret == 0, "Expected _mbslwr_s to return 0, got %d\n", ret);
2312 errno = EBADF;
2313 ret = p_mbslwr_s(NULL, sizeof(buffer));
2314 ok(ret == EINVAL, "Expected _mbslwr_s to return EINVAL, got %d\n", ret);
2315 ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
2317 errno = EBADF;
2318 ret = p_mbslwr_s(buffer, 0);
2319 ok(ret == EINVAL, "Expected _mbslwr_s to return EINVAL, got %d\n", ret);
2320 ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
2322 memcpy(buffer, "ABCDEFGH", sizeof("ABCDEFGH"));
2323 errno = EBADF;
2324 ret = p_mbslwr_s(buffer, sizeof("ABCDEFGH"));
2325 ok(ret == 0, "Expected _mbslwr_s to return 0, got %d\n", ret);
2326 ok(!memcmp(buffer, "abcdefgh", sizeof("abcdefgh")),
2327 "Expected the output buffer to be \"abcdefgh\", got \"%s\"\n",
2328 buffer);
2330 memcpy(buffer, "ABCDEFGH", sizeof("ABCDEFGH"));
2331 errno = EBADF;
2332 ret = p_mbslwr_s(buffer, sizeof(buffer));
2333 ok(ret == 0, "Expected _mbslwr_s to return 0, got %d\n", ret);
2334 ok(!memcmp(buffer, "abcdefgh", sizeof("abcdefgh")),
2335 "Expected the output buffer to be \"abcdefgh\", got \"%s\"\n",
2336 buffer);
2338 memcpy(buffer, "ABCDEFGH", sizeof("ABCDEFGH"));
2339 errno = EBADF;
2340 ret = p_mbslwr_s(buffer, 4);
2341 ok(ret == EINVAL, "Expected _mbslwr_s to return EINVAL, got %d\n", ret);
2342 ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
2344 memcpy(buffer, "ABCDEFGH\0IJKLMNOP", sizeof("ABCDEFGH\0IJKLMNOP"));
2345 errno = EBADF;
2346 ret = p_mbslwr_s(buffer, sizeof(buffer));
2347 ok(ret == 0, "Expected _mbslwr_s to return 0, got %d\n", ret);
2348 ok(!memcmp(buffer, "abcdefgh\0IJKLMNOP", sizeof("abcdefgh\0IJKLMNOP")),
2349 "Expected the output buffer to be \"abcdefgh\\0IJKLMNOP\", got \"%s\"\n",
2350 buffer);
2353 static void test__mbstok(void)
2355 const unsigned char delim[] = "t";
2357 char str[] = "!.!test";
2358 unsigned char *ret;
2360 strtok(str, "!");
2362 ret = _mbstok(NULL, delim);
2363 /* most versions of msvcrt use the same buffer for strtok and _mbstok */
2364 ok(!ret || broken((char*)ret==str+4),
2365 "_mbstok(NULL, \"t\") = %p, expected NULL (%p)\n", ret, str);
2367 ret = _mbstok(NULL, delim);
2368 ok(!ret, "_mbstok(NULL, \"t\") = %p, expected NULL\n", ret);
2371 static void test__ultoa_s(void)
2373 errno_t ret;
2374 char buffer[33];
2376 if (!p_ultoa_s)
2378 win_skip("Skipping _ultoa_s tests\n");
2379 return;
2382 errno = EBADF;
2383 ret = p_ultoa_s(0, NULL, 0, 0);
2384 ok(ret == EINVAL, "Expected _ultoa_s to return EINVAL, got %d\n", ret);
2385 ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
2387 memset(buffer, 'X', sizeof(buffer));
2388 errno = EBADF;
2389 ret = p_ultoa_s(0, buffer, 0, 0);
2390 ok(ret == EINVAL, "Expected _ultoa_s to return EINVAL, got %d\n", ret);
2391 ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
2392 ok(buffer[0] == 'X', "Expected the output buffer to be untouched\n");
2394 memset(buffer, 'X', sizeof(buffer));
2395 errno = EBADF;
2396 ret = p_ultoa_s(0, buffer, sizeof(buffer), 0);
2397 ok(ret == EINVAL, "Expected _ultoa_s to return EINVAL, got %d\n", ret);
2398 ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
2399 ok(buffer[0] == '\0', "Expected the output buffer to be null terminated\n");
2401 memset(buffer, 'X', sizeof(buffer));
2402 errno = EBADF;
2403 ret = p_ultoa_s(0, buffer, sizeof(buffer), 64);
2404 ok(ret == EINVAL, "Expected _ultoa_s to return EINVAL, got %d\n", ret);
2405 ok(errno == EINVAL, "Expected errno to be EINVAL, got %d\n", errno);
2406 ok(buffer[0] == '\0', "Expected the output buffer to be null terminated\n");
2408 memset(buffer, 'X', sizeof(buffer));
2409 errno = EBADF;
2410 ret = p_ultoa_s(12345678, buffer, 4, 10);
2411 ok(ret == ERANGE, "Expected _ultoa_s to return ERANGE, got %d\n", ret);
2412 ok(errno == ERANGE, "Expected errno to be ERANGE, got %d\n", errno);
2413 ok(!memcmp(buffer, "\000765", 4),
2414 "Expected the output buffer to be null terminated with truncated output\n");
2416 memset(buffer, 'X', sizeof(buffer));
2417 errno = EBADF;
2418 ret = p_ultoa_s(12345678, buffer, 8, 10);
2419 ok(ret == ERANGE, "Expected _ultoa_s to return ERANGE, got %d\n", ret);
2420 ok(errno == ERANGE, "Expected errno to be ERANGE, got %d\n", errno);
2421 ok(!memcmp(buffer, "\0007654321", 8),
2422 "Expected the output buffer to be null terminated with truncated output\n");
2424 ret = p_ultoa_s(12345678, buffer, 9, 10);
2425 ok(ret == 0, "Expected _ultoa_s to return 0, got %d\n", ret);
2426 ok(!strcmp(buffer, "12345678"),
2427 "Expected output buffer string to be \"12345678\", got \"%s\"\n",
2428 buffer);
2430 ret = p_ultoa_s(43690, buffer, sizeof(buffer), 2);
2431 ok(ret == 0, "Expected _ultoa_s to return 0, got %d\n", ret);
2432 ok(!strcmp(buffer, "1010101010101010"),
2433 "Expected output buffer string to be \"1010101010101010\", got \"%s\"\n",
2434 buffer);
2436 ret = p_ultoa_s(1092009, buffer, sizeof(buffer), 36);
2437 ok(ret == 0, "Expected _ultoa_s to return 0, got %d\n", ret);
2438 ok(!strcmp(buffer, "nell"),
2439 "Expected output buffer string to be \"nell\", got \"%s\"\n",
2440 buffer);
2442 ret = p_ultoa_s(5704, buffer, sizeof(buffer), 18);
2443 ok(ret == 0, "Expected _ultoa_s to return 0, got %d\n", ret);
2444 ok(!strcmp(buffer, "hag"),
2445 "Expected output buffer string to be \"hag\", got \"%s\"\n",
2446 buffer);
2449 static void test_wctob(void)
2451 int ret;
2453 if(!p_wctob || !setlocale(LC_ALL, "chinese-traditional")) {
2454 win_skip("Skipping wctob tests\n");
2455 return;
2458 ret = p_wctob(0x8141);
2459 ok(ret == EOF, "ret = %x\n", ret);
2461 ret = p_wctob(0x81);
2462 ok(ret == EOF, "ret = %x\n", ret);
2464 ret = p_wctob(0xe0);
2465 ok(ret == 0x61, "ret = %x\n", ret);
2467 _setmbcp(1250);
2468 ret = p_wctob(0x81);
2469 ok(ret == EOF, "ret = %x\n", ret);
2471 setlocale(LC_ALL, "C");
2472 ret = p_wctob(0x8141);
2473 ok(ret == EOF, "ret = %x\n", ret);
2475 ret = p_wctob(0x81);
2476 ok(ret == (int)(char)0x81, "ret = %x\n", ret);
2478 ret = p_wctob(0x9f);
2479 ok(ret == (int)(char)0x9f, "ret = %x\n", ret);
2481 ret = p_wctob(0xe0);
2482 ok(ret == (int)(char)0xe0, "ret = %x\n", ret);
2484 static void test_wctomb(void)
2486 mbstate_t state;
2487 unsigned char dst[10];
2488 size_t ret;
2490 if(!p_wcrtomb || !setlocale(LC_ALL, "Japanese_Japan.932")) {
2491 win_skip("wcrtomb tests\n");
2492 return;
2495 ret = p_wcrtomb(NULL, 0x3042, NULL);
2496 ok(ret == 2, "wcrtomb did not return 2\n");
2498 state = 1;
2499 dst[2] = 'a';
2500 ret = p_wcrtomb((char*)dst, 0x3042, &state);
2501 ok(ret == 2, "wcrtomb did not return 2\n");
2502 ok(state == 0, "state != 0\n");
2503 ok(dst[0] == 0x82, "dst[0] = %x, expected 0x82\n", dst[0]);
2504 ok(dst[1] == 0xa0, "dst[1] = %x, expected 0xa0\n", dst[1]);
2505 ok(dst[2] == 'a', "dst[2] != 'a'\n");
2507 ret = p_wcrtomb((char*)dst, 0x3043, NULL);
2508 ok(ret == 2, "wcrtomb did not return 2\n");
2509 ok(dst[0] == 0x82, "dst[0] = %x, expected 0x82\n", dst[0]);
2510 ok(dst[1] == 0xa1, "dst[1] = %x, expected 0xa1\n", dst[1]);
2512 ret = p_wcrtomb((char*)dst, 0x20, NULL);
2513 ok(ret == 1, "wcrtomb did not return 1\n");
2514 ok(dst[0] == 0x20, "dst[0] = %x, expected 0x20\n", dst[0]);
2516 ret = p_wcrtomb((char*)dst, 0xffff, NULL);
2517 ok(ret == -1, "wcrtomb did not return -1\n");
2518 ok(dst[0] == 0x3f, "dst[0] = %x, expected 0x3f\n", dst[0]);
2520 setlocale(LC_ALL, "C");
2523 static void test_tolower(void)
2525 char ch, lch;
2526 int ret, len;
2528 /* test C locale when locale was never changed */
2529 ret = p_tolower(0x41);
2530 ok(ret == 0x61, "ret = %x\n", ret);
2532 ret = p_tolower(0xF4);
2533 ok(ret == 0xF4, "ret = %x\n", ret);
2535 errno = 0xdeadbeef;
2536 ret = p_tolower((char)0xF4);
2537 todo_wine ok(ret == (char)0xF4, "ret = %x\n", ret);
2538 todo_wine ok(errno == 0xdeadbeef, "errno = %d\n", errno);
2540 errno = 0xdeadbeef;
2541 ret = p_tolower((char)0xD0);
2542 todo_wine ok(ret == (char)0xD0, "ret = %x\n", ret);
2543 todo_wine ok(errno == 0xdeadbeef, "errno = %d\n", errno);
2545 /* test C locale after setting locale */
2546 if(!setlocale(LC_ALL, "us")) {
2547 win_skip("skipping tolower tests that depends on locale\n");
2548 return;
2550 setlocale(LC_ALL, "C");
2552 ch = 0xF4;
2553 errno = 0xdeadbeef;
2554 ret = p_tolower(ch);
2555 len = LCMapStringA(0, LCMAP_LOWERCASE, &ch, 1, &lch, 1);
2556 if(len)
2557 ok(ret==(unsigned char)lch || broken(ret==ch)/*WinXP-*/, "ret = %x\n", ret);
2558 else
2559 ok(ret == ch, "ret = %x\n", ret);
2560 if(!len || ret==(unsigned char)lch)
2561 ok(errno == EILSEQ, "errno = %d\n", errno);
2563 ch = 0xD0;
2564 errno = 0xdeadbeef;
2565 ret = p_tolower(ch);
2566 len = LCMapStringA(0, LCMAP_LOWERCASE, &ch, 1, &lch, 1);
2567 if(len)
2568 ok(ret==(unsigned char)lch || broken(ret==ch)/*WinXP-*/, "ret = %x\n", ret);
2569 else
2570 ok(ret == ch, "ret = %x\n", ret);
2571 if(!len || ret==(unsigned char)lch)
2572 ok(errno == EILSEQ, "errno = %d\n", errno);
2574 ret = p_tolower(0xD0);
2575 ok(ret == 0xD0, "ret = %x\n", ret);
2577 ok(setlocale(LC_ALL, "us") != NULL, "setlocale failed\n");
2579 ret = p_tolower((char)0xD0);
2580 ok(ret == 0xF0, "ret = %x\n", ret);
2582 ret = p_tolower(0xD0);
2583 ok(ret == 0xF0, "ret = %x\n", ret);
2585 setlocale(LC_ALL, "C");
2588 static void test__atodbl(void)
2590 _CRT_DOUBLE d;
2591 char num[32];
2592 int ret;
2594 if(!p__atodbl_l) {
2595 /* Old versions of msvcrt use different values for _OVERFLOW and _UNDERFLOW
2596 * Because of this lets skip _atodbl tests when _atodbl_l is not available */
2597 win_skip("_atodbl_l is not available\n");
2598 return;
2601 num[0] = 0;
2602 ret = p__atodbl_l(&d, num, NULL);
2603 ok(ret == 0, "_atodbl_l(&d, \"\", NULL) returned %d, expected 0\n", ret);
2604 ok(d.x == 0, "d.x = %lf, expected 0\n", d.x);
2605 ret = _atodbl(&d, num);
2606 ok(ret == 0, "_atodbl(&d, \"\") returned %d, expected 0\n", ret);
2607 ok(d.x == 0, "d.x = %lf, expected 0\n", d.x);
2609 strcpy(num, "t");
2610 ret = p__atodbl_l(&d, num, NULL);
2611 ok(ret == 0, "_atodbl_l(&d, \"t\", NULL) returned %d, expected 0\n", ret);
2612 ok(d.x == 0, "d.x = %lf, expected 0\n", d.x);
2613 ret = _atodbl(&d, num);
2614 ok(ret == 0, "_atodbl(&d, \"t\") returned %d, expected 0\n", ret);
2615 ok(d.x == 0, "d.x = %lf, expected 0\n", d.x);
2617 strcpy(num, "0");
2618 ret = p__atodbl_l(&d, num, NULL);
2619 ok(ret == 0, "_atodbl_l(&d, \"0\", NULL) returned %d, expected 0\n", ret);
2620 ok(d.x == 0, "d.x = %lf, expected 0\n", d.x);
2621 ret = _atodbl(&d, num);
2622 ok(ret == 0, "_atodbl(&d, \"0\") returned %d, expected 0\n", ret);
2623 ok(d.x == 0, "d.x = %lf, expected 0\n", d.x);
2625 strcpy(num, "123");
2626 ret = p__atodbl_l(&d, num, NULL);
2627 ok(ret == 0, "_atodbl_l(&d, \"123\", NULL) returned %d, expected 0\n", ret);
2628 ok(d.x == 123, "d.x = %lf, expected 123\n", d.x);
2629 ret = _atodbl(&d, num);
2630 ok(ret == 0, "_atodbl(&d, \"123\") returned %d, expected 0\n", ret);
2631 ok(d.x == 123, "d.x = %lf, expected 123\n", d.x);
2633 strcpy(num, "1e-309");
2634 ret = p__atodbl_l(&d, num, NULL);
2635 ok(ret == _UNDERFLOW, "_atodbl_l(&d, \"1e-309\", NULL) returned %d, expected _UNDERFLOW\n", ret);
2636 ok(d.x!=0 && almost_equal(d.x, 0), "d.x = %le, expected 0\n", d.x);
2637 ret = _atodbl(&d, num);
2638 ok(ret == _UNDERFLOW, "_atodbl(&d, \"1e-309\") returned %d, expected _UNDERFLOW\n", ret);
2639 ok(d.x!=0 && almost_equal(d.x, 0), "d.x = %le, expected 0\n", d.x);
2641 strcpy(num, "1e309");
2642 ret = p__atodbl_l(&d, num, NULL);
2643 ok(ret == _OVERFLOW, "_atodbl_l(&d, \"1e309\", NULL) returned %d, expected _OVERFLOW\n", ret);
2644 ret = _atodbl(&d, num);
2645 ok(ret == _OVERFLOW, "_atodbl(&d, \"1e309\") returned %d, expected _OVERFLOW\n", ret);
2648 static void test__stricmp(void)
2650 int ret;
2652 ret = _stricmp("test", "test");
2653 ok(ret == 0, "_stricmp returned %d\n", ret);
2654 ret = _stricmp("a", "z");
2655 ok(ret < 0, "_stricmp returned %d\n", ret);
2656 ret = _stricmp("z", "a");
2657 ok(ret > 0, "_stricmp returned %d\n", ret);
2658 ret = _stricmp("\xa5", "\xb9");
2659 ok(ret < 0, "_stricmp returned %d\n", ret);
2661 if(!setlocale(LC_ALL, "polish")) {
2662 win_skip("stricmp tests\n");
2663 return;
2666 ret = _stricmp("test", "test");
2667 ok(ret == 0, "_stricmp returned %d\n", ret);
2668 ret = _stricmp("a", "z");
2669 ok(ret < 0, "_stricmp returned %d\n", ret);
2670 ret = _stricmp("z", "a");
2671 ok(ret > 0, "_stricmp returned %d\n", ret);
2672 ret = _stricmp("\xa5", "\xb9");
2673 ok(ret == 0, "_stricmp returned %d\n", ret);
2674 ret = _stricmp("a", "\xb9");
2675 ok(ret < 0, "_stricmp returned %d\n", ret);
2677 setlocale(LC_ALL, "C");
2680 static void test__wcstoi64(void)
2682 static const WCHAR digit[] = { '9', 0 };
2683 static const WCHAR stock[] = { 0x3231, 0 }; /* PARENTHESIZED IDEOGRAPH STOCK */
2684 static const WCHAR tamil[] = { 0x0bef, 0 }; /* TAMIL DIGIT NINE */
2685 static const WCHAR thai[] = { 0x0e59, 0 }; /* THAI DIGIT NINE */
2686 static const WCHAR fullwidth[] = { 0xff19, 0 }; /* FULLWIDTH DIGIT NINE */
2687 static const WCHAR hex[] = { 0xff19, 'f', 0x0e59, 0xff46, 0 };
2689 __int64 res;
2690 unsigned __int64 ures;
2691 WCHAR *endpos;
2693 if (!p_wcstoi64 || !p_wcstoui64) {
2694 win_skip("_wcstoi64 or _wcstoui64 not found\n");
2695 return;
2698 res = p_wcstoi64(digit, NULL, 10);
2699 ok(res == 9, "res != 9\n");
2700 res = p_wcstoi64(stock, &endpos, 10);
2701 ok(res == 0, "res != 0\n");
2702 ok(endpos == stock, "Incorrect endpos (%p-%p)\n", stock, endpos);
2703 res = p_wcstoi64(tamil, &endpos, 10);
2704 ok(res == 0, "res != 0\n");
2705 ok(endpos == tamil, "Incorrect endpos (%p-%p)\n", tamil, endpos);
2706 res = p_wcstoi64(thai, NULL, 10);
2707 todo_wine ok(res == 9, "res != 9\n");
2708 res = p_wcstoi64(fullwidth, NULL, 10);
2709 todo_wine ok(res == 9, "res != 9\n");
2710 res = p_wcstoi64(hex, NULL, 16);
2711 todo_wine ok(res == 0x9f9, "res != 0x9f9\n");
2713 ures = p_wcstoui64(digit, NULL, 10);
2714 ok(ures == 9, "ures != 9\n");
2715 ures = p_wcstoui64(stock, &endpos, 10);
2716 ok(ures == 0, "ures != 0\n");
2717 ok(endpos == stock, "Incorrect endpos (%p-%p)\n", stock, endpos);
2718 ures = p_wcstoui64(tamil, &endpos, 10);
2719 ok(ures == 0, "ures != 0\n");
2720 ok(endpos == tamil, "Incorrect endpos (%p-%p)\n", tamil, endpos);
2721 ures = p_wcstoui64(thai, NULL, 10);
2722 todo_wine ok(ures == 9, "ures != 9\n");
2723 ures = p_wcstoui64(fullwidth, NULL, 10);
2724 todo_wine ok(ures == 9, "ures != 9\n");
2725 ures = p_wcstoui64(hex, NULL, 16);
2726 todo_wine ok(ures == 0x9f9, "ures != 0x9f9\n");
2728 return;
2731 static void test_atoi(void)
2733 int r;
2735 r = atoi("0");
2736 ok(r == 0, "atoi(0) = %d\n", r);
2738 r = atoi("-1");
2739 ok(r == -1, "atoi(-1) = %d\n", r);
2741 r = atoi("1");
2742 ok(r == 1, "atoi(1) = %d\n", r);
2744 r = atoi("4294967296");
2745 ok(r == 0, "atoi(4294967296) = %d\n", r);
2748 static void test_atof(void)
2750 double d;
2752 d = atof("0.0");
2753 ok(almost_equal(d, 0.0), "d = %lf\n", d);
2755 d = atof("1.0");
2756 ok(almost_equal(d, 1.0), "d = %lf\n", d);
2758 d = atof("-1.0");
2759 ok(almost_equal(d, -1.0), "d = %lf\n", d);
2761 if (!p__atof_l)
2763 win_skip("_atof_l not found\n");
2764 return;
2767 errno = EBADF;
2768 d = atof(NULL);
2769 ok(almost_equal(d, 0.0), "d = %lf\n", d);
2770 ok(errno == EINVAL, "errno = %x\n", errno);
2772 errno = EBADF;
2773 d = p__atof_l(NULL, NULL);
2774 ok(almost_equal(d, 0.0), "d = %lf\n", d);
2775 ok(errno == EINVAL, "errno = %x\n", errno);
2778 static void test_strncpy(void)
2780 #define TEST_STRNCPY_LEN 10
2781 char *ret;
2782 char dst[TEST_STRNCPY_LEN + 1];
2783 char not_null_terminated[] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '0'};
2785 /* strlen(src) > TEST_STRNCPY_LEN */
2786 ret = strncpy(dst, "01234567890123456789", TEST_STRNCPY_LEN);
2787 ok(ret == dst, "ret != dst\n");
2788 ok(!strncmp(dst, "0123456789", TEST_STRNCPY_LEN), "dst != 0123456789\n");
2790 /* without null-terminated */
2791 ret = strncpy(dst, not_null_terminated, TEST_STRNCPY_LEN);
2792 ok(ret == dst, "ret != dst\n");
2793 ok(!strncmp(dst, "0123456789", TEST_STRNCPY_LEN), "dst != 0123456789\n");
2795 /* strlen(src) < TEST_STRNCPY_LEN */
2796 strcpy(dst, "0123456789");
2797 ret = strncpy(dst, "012345", TEST_STRNCPY_LEN);
2798 ok(ret == dst, "ret != dst\n");
2799 ok(!strcmp(dst, "012345"), "dst != 012345\n");
2800 ok(dst[TEST_STRNCPY_LEN - 1] == '\0', "dst[TEST_STRNCPY_LEN - 1] != 0\n");
2802 /* strlen(src) == TEST_STRNCPY_LEN */
2803 ret = strncpy(dst, "0123456789", TEST_STRNCPY_LEN);
2804 ok(ret == dst, "ret != dst\n");
2805 ok(!strncmp(dst, "0123456789", TEST_STRNCPY_LEN), "dst != 0123456789\n");
2808 static void test_strxfrm(void)
2810 char dest[256];
2811 size_t ret;
2813 /* crashes on old version of msvcrt */
2814 if(p__atodbl_l) {
2815 errno = 0xdeadbeef;
2816 ret = strxfrm(NULL, "src", 1);
2817 ok(ret == INT_MAX, "ret = %d\n", (int)ret);
2818 ok(errno == EINVAL, "errno = %d\n", errno);
2820 errno = 0xdeadbeef;
2821 ret = strxfrm(dest, NULL, 100);
2822 ok(ret == INT_MAX, "ret = %d\n", (int)ret);
2823 ok(errno == EINVAL, "errno = %d\n", errno);
2826 ret = strxfrm(NULL, "src", 0);
2827 ok(ret == 3, "ret = %d\n", (int)ret);
2828 dest[0] = 'a';
2829 ret = strxfrm(dest, "src", 0);
2830 ok(ret == 3, "ret = %d\n", (int)ret);
2831 ok(dest[0] == 'a', "dest[0] = %d\n", dest[0]);
2833 dest[3] = 'a';
2834 ret = strxfrm(dest, "src", 5);
2835 ok(ret == 3, "ret = %d\n", (int)ret);
2836 ok(!strcmp(dest, "src"), "dest = %s\n", dest);
2838 errno = 0xdeadbeef;
2839 dest[1] = 'a';
2840 ret = strxfrm(dest, "src", 1);
2841 ok(ret == 3, "ret = %d\n", (int)ret);
2842 ok(dest[0] == 's', "dest[0] = %d\n", dest[0]);
2843 ok(dest[1] == 'a', "dest[1] = %d\n", dest[1]);
2844 ok(errno == 0xdeadbeef, "errno = %d\n", errno);
2846 ret = strxfrm(dest, "", 5);
2847 ok(ret == 0, "ret = %d\n", (int)ret);
2848 ok(!dest[0], "dest[0] = %d\n", dest[0]);
2850 if(!setlocale(LC_ALL, "polish")) {
2851 win_skip("stxfrm tests\n");
2852 return;
2855 ret = strxfrm(NULL, "src", 0);
2856 ok(ret < sizeof(dest)-1, "ret = %d\n", (int)ret);
2857 dest[0] = 'a';
2858 ret = strxfrm(dest, "src", 0);
2859 ok(ret < sizeof(dest)-1, "ret = %d\n", (int)ret);
2860 ok(dest[0] == 'a', "dest[0] = %d\n", dest[0]);
2862 ret = strxfrm(dest, "src", ret+1);
2863 ok(ret < sizeof(dest)-1, "ret = %d\n", (int)ret);
2864 ok(dest[0], "dest[0] = 0\n");
2866 errno = 0xdeadbeef;
2867 dest[0] = 'a';
2868 ret = strxfrm(dest, "src", 5);
2869 ok(ret>5 && ret<sizeof(dest)-1, "ret = %d\n", (int)ret);
2870 ok(!dest[0] || broken(!p__atodbl_l && dest[0]=='a'), "dest[0] = %d\n", dest[0]);
2872 setlocale(LC_ALL, "C");
2875 static void test__strnset_s(void)
2877 char buf[5] = {0};
2878 int r;
2880 if(!p__strnset_s) {
2881 win_skip("_strnset_s not available\n");
2882 return;
2885 r = p__strnset_s(NULL, 0, 'a', 0);
2886 ok(r == 0, "r = %d\n", r);
2888 buf[0] = buf[1] = buf[2] = 'b';
2889 r = p__strnset_s(buf, sizeof(buf), 'a', 2);
2890 ok(r == 0, "r = %d\n", r);
2891 ok(!strcmp(buf, "aab"), "buf = %s\n", buf);
2893 r = p__strnset_s(buf, 0, 'a', 0);
2894 ok(r == EINVAL, "r = %d\n", r);
2896 r = p__strnset_s(NULL, 0, 'a', 1);
2897 ok(r == EINVAL, "r = %d\n", r);
2899 buf[3] = 'b';
2900 r = p__strnset_s(buf, sizeof(buf)-1, 'c', 2);
2901 ok(r == EINVAL, "r = %d\n", r);
2902 ok(!buf[0] && buf[1]=='c' && buf[2]=='b', "buf = %s\n", buf);
2905 static void test__wcsset_s(void)
2907 wchar_t str[10];
2908 int r;
2910 if(!p__wcsset_s) {
2911 win_skip("_wcsset_s not available\n");
2912 return;
2915 r = p__wcsset_s(NULL, 0, 'a');
2916 ok(r == EINVAL, "r = %d\n", r);
2918 str[0] = 'a';
2919 r = p__wcsset_s(str, 0, 'a');
2920 ok(r == EINVAL, "r = %d\n", r);
2921 ok(str[0] == 'a', "str[0] = %d\n", str[0]);
2923 str[0] = 'a';
2924 str[1] = 'b';
2925 r = p__wcsset_s(str, 2, 'c');
2926 ok(r == EINVAL, "r = %d\n", r);
2927 ok(!str[0], "str[0] = %d\n", str[0]);
2928 ok(str[1] == 'b', "str[1] = %d\n", str[1]);
2930 str[0] = 'a';
2931 str[1] = 0;
2932 str[2] = 'b';
2933 r = p__wcsset_s(str, 3, 'c');
2934 ok(str[0] == 'c', "str[0] = %d\n", str[0]);
2935 ok(str[1] == 0, "str[1] = %d\n", str[1]);
2936 ok(str[2] == 'b', "str[2] = %d\n", str[2]);
2939 static void test__mbscmp(void)
2941 static const unsigned char a[] = {'a',0}, b[] = {'b',0};
2942 int ret;
2944 if (!p_mbrlen)
2946 win_skip("_mbscmp tests\n");
2947 return;
2950 ret = _mbscmp(NULL, NULL);
2951 ok(ret == INT_MAX, "got %d\n", ret);
2953 ret = _mbscmp(a, NULL);
2954 ok(ret == INT_MAX, "got %d\n", ret);
2956 ret = _mbscmp(NULL, a);
2957 ok(ret == INT_MAX, "got %d\n", ret);
2959 ret = _mbscmp(a, a);
2960 ok(!ret, "got %d\n", ret);
2962 ret = _mbscmp(a, b);
2963 ok(ret == -1, "got %d\n", ret);
2965 ret = _mbscmp(b, a);
2966 ok(ret == 1, "got %d\n", ret);
2969 START_TEST(string)
2971 char mem[100];
2972 static const char xilstring[]="c:/xilinx";
2973 int nLen;
2975 hMsvcrt = GetModuleHandleA("msvcrt.dll");
2976 if (!hMsvcrt)
2977 hMsvcrt = GetModuleHandleA("msvcrtd.dll");
2978 ok(hMsvcrt != 0, "GetModuleHandleA failed\n");
2979 SET(pmemcpy,"memcpy");
2980 p_memcpy_s = (void*)GetProcAddress( hMsvcrt, "memcpy_s" );
2981 p_memmove_s = (void*)GetProcAddress( hMsvcrt, "memmove_s" );
2982 SET(pmemcmp,"memcmp");
2983 SET(p_mbctype,"_mbctype");
2984 SET(p__mb_cur_max,"__mb_cur_max");
2985 pstrcpy_s = (void *)GetProcAddress( hMsvcrt,"strcpy_s" );
2986 pstrcat_s = (void *)GetProcAddress( hMsvcrt,"strcat_s" );
2987 p_mbsnbcat_s = (void *)GetProcAddress( hMsvcrt,"_mbsnbcat_s" );
2988 p_mbsnbcpy_s = (void *)GetProcAddress( hMsvcrt,"_mbsnbcpy_s" );
2989 p__mbscpy_s = (void *)GetProcAddress( hMsvcrt,"_mbscpy_s" );
2990 p_wcscpy_s = (void *)GetProcAddress( hMsvcrt,"wcscpy_s" );
2991 p_wcsncpy_s = (void *)GetProcAddress( hMsvcrt,"wcsncpy_s" );
2992 p_wcsncat_s = (void *)GetProcAddress( hMsvcrt,"wcsncat_s" );
2993 p_wcsupr_s = (void *)GetProcAddress( hMsvcrt,"_wcsupr_s" );
2994 p_strnlen = (void *)GetProcAddress( hMsvcrt,"strnlen" );
2995 p_strtoi64 = (void *)GetProcAddress(hMsvcrt, "_strtoi64");
2996 p_strtoui64 = (void *)GetProcAddress(hMsvcrt, "_strtoui64");
2997 p_wcstoi64 = (void *)GetProcAddress(hMsvcrt, "_wcstoi64");
2998 p_wcstoui64 = (void *)GetProcAddress(hMsvcrt, "_wcstoui64");
2999 pmbstowcs_s = (void *)GetProcAddress(hMsvcrt, "mbstowcs_s");
3000 pwcstombs_s = (void *)GetProcAddress(hMsvcrt, "wcstombs_s");
3001 pwcsrtombs = (void *)GetProcAddress(hMsvcrt, "wcsrtombs");
3002 p_gcvt_s = (void *)GetProcAddress(hMsvcrt, "_gcvt_s");
3003 p_itoa_s = (void *)GetProcAddress(hMsvcrt, "_itoa_s");
3004 p_strlwr_s = (void *)GetProcAddress(hMsvcrt, "_strlwr_s");
3005 p_ultoa_s = (void *)GetProcAddress(hMsvcrt, "_ultoa_s");
3006 p_wcslwr_s = (void*)GetProcAddress(hMsvcrt, "_wcslwr_s");
3007 p_mbsupr_s = (void*)GetProcAddress(hMsvcrt, "_mbsupr_s");
3008 p_mbslwr_s = (void*)GetProcAddress(hMsvcrt, "_mbslwr_s");
3009 p_wctob = (void*)GetProcAddress(hMsvcrt, "wctob");
3010 p_wcrtomb = (void*)GetProcAddress(hMsvcrt, "wcrtomb");
3011 p_tolower = (void*)GetProcAddress(hMsvcrt, "tolower");
3012 p_mbrlen = (void*)GetProcAddress(hMsvcrt, "mbrlen");
3013 p_mbrtowc = (void*)GetProcAddress(hMsvcrt, "mbrtowc");
3014 p_mbsrtowcs = (void*)GetProcAddress(hMsvcrt, "mbsrtowcs");
3015 p__atodbl_l = (void*)GetProcAddress(hMsvcrt, "_atodbl_l");
3016 p__atof_l = (void*)GetProcAddress(hMsvcrt, "_atof_l");
3017 p__strtod_l = (void*)GetProcAddress(hMsvcrt, "_strtod_l");
3018 p__strnset_s = (void*)GetProcAddress(hMsvcrt, "_strnset_s");
3019 p__wcsset_s = (void*)GetProcAddress(hMsvcrt, "_wcsset_s");
3021 /* MSVCRT memcpy behaves like memmove for overlapping moves,
3022 MFC42 CString::Insert seems to rely on that behaviour */
3023 strcpy(mem,xilstring);
3024 nLen=strlen(xilstring);
3025 pmemcpy(mem+5, mem,nLen+1);
3026 ok(pmemcmp(mem+5,xilstring, nLen) == 0,
3027 "Got result %s\n",mem+5);
3029 /* run tolower tests first */
3030 test_tolower();
3031 test_swab();
3032 test_mbcp();
3033 test_mbsspn();
3034 test_mbsspnp();
3035 test_strdup();
3036 test_strcpy_s();
3037 test_memcpy_s();
3038 test_memmove_s();
3039 test_strcat_s();
3040 test__mbsnbcpy_s();
3041 test__mbscpy_s();
3042 test_mbcjisjms();
3043 test_mbcjmsjis();
3044 test_mbctohira();
3045 test_mbctokata();
3046 test_mbbtombc();
3047 test_mbctombb();
3048 test_ismbckata();
3049 test_ismbclegal();
3050 test_strtok();
3051 test__mbstok();
3052 test_wcscpy_s();
3053 test__wcsupr_s();
3054 test_strtol();
3055 test_strnlen();
3056 test__strtoi64();
3057 test__strtod();
3058 test_mbstowcs();
3059 test_gcvt();
3060 test__itoa_s();
3061 test__strlwr_s();
3062 test_wcsncat_s();
3063 test__mbsnbcat_s();
3064 test__ultoa_s();
3065 test__wcslwr_s();
3066 test__mbsupr_s();
3067 test__mbslwr_s();
3068 test_wctob();
3069 test_wctomb();
3070 test__atodbl();
3071 test__stricmp();
3072 test__wcstoi64();
3073 test_atoi();
3074 test_atof();
3075 test_strncpy();
3076 test_strxfrm();
3077 test__strnset_s();
3078 test__wcsset_s();
3079 test__mbscmp();