glibc/localedata/tests-mbwc/tst_wcslen.c
Andreas Jaeger 5b905722f6 * Makefile (tests): Add tests from tests-mbwc subdirectory,
comment them out for now. 
(subdir-dirs): New for tests-mbwc, add also vpaths.
	* Makefile (tests): Add tests from tests-mbwc subdirectory,
	comment them out for now.
	(subdir-dirs): New for tests-mbwc, add also vpaths.
2000-06-27 12:14:09 +00:00

32 lines
483 B
C

/*
WCSLEN: size_t wcslen (const wchar_t *ws);
*/
#define TST_FUNCTION wcslen
#include "tsp_common.c"
#include "dat_wcslen.c"
int
tst_wcslen (FILE * fp, int debug_flg)
{
TST_DECL_VARS (size_t);
wchar_t *ws;
TST_DO_TEST (wcslen)
{
TST_HEAD_LOCALE (wcslen, S_WCSLEN);
TST_DO_REC (wcslen)
{
TST_GET_ERRET (wcslen);
ws = TST_INPUT (wcslen).ws;
ret = wcslen (ws);
TST_IF_RETURN (S_WCSLEN)
{
};
}
}
return err_count;
}