mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-06 05:10:05 +00:00
6d497bbef7
* libio/tst-freopen.c (main): Use correct formats for __LINE__. * libio/tst-mmap-setvbuf.c (main): Likewise. * libio/tst-widetext.c (main): Likewise. * libio/tst-mmap-eofsync.c (do_test): Use correct format in error message. * libio/tst-mmap-fflushsync.c (do_test): Likewise. * libio/tst-mmap2-eofsync.c (do_test): Likewise.
39 lines
667 B
C
39 lines
667 B
C
/*
|
|
WCSSPN: size_t wcsspn (const wchar_t *ws1, const wchar_t *ws2);
|
|
*/
|
|
|
|
#define TST_FUNCTION wcsspn
|
|
|
|
#include "tsp_common.c"
|
|
#include "dat_wcsspn.c"
|
|
|
|
int
|
|
tst_wcsspn (FILE *fp, int debug_flg)
|
|
{
|
|
TST_DECL_VARS (size_t);
|
|
wchar_t *ws1, *ws2;
|
|
|
|
TST_DO_TEST (wcsspn)
|
|
{
|
|
TST_HEAD_LOCALE (wcsspn, S_WCSSPN);
|
|
TST_DO_REC (wcsspn)
|
|
{
|
|
TST_GET_ERRET (wcsspn);
|
|
ws1 = TST_INPUT (wcsspn).ws1;
|
|
ws2 = TST_INPUT (wcsspn).ws2; /* external value: size WCSSIZE */
|
|
ret = wcsspn (ws1, ws2);
|
|
|
|
if (debug_flg)
|
|
{
|
|
fprintf (stderr, "wcsspn: ret = %zu\n", ret);
|
|
}
|
|
|
|
TST_IF_RETURN (S_WCSSPN)
|
|
{
|
|
};
|
|
}
|
|
}
|
|
|
|
return err_count;
|
|
}
|