HomeSort by: relevance | last modified time | path
    Searched defs:wcstombs (Results 1 - 2 of 2) sorted by relevancy

  /src/lib/libc/locale/
multibyte_c90.c 122 wcstombs(char *s, const wchar_t *wcs, size_t n) function
  /src/tests/lib/libc/locale/
t_wcstod.c 388 ATF_TC(wcstombs); variable
389 ATF_TC_HEAD(wcstombs, tc)
391 atf_tc_set_md_var(tc, "descr", "Checks wcstombs(3) on the inputs to the wcstod test");
393 ATF_TC_BODY(wcstombs, tc)
405 n = wcstombs(NULL, t->wcs, 0);
406 printf("wcstombs(NULL, \"%S\", 0) = %d\n", t->wcs, (int)n);
408 (void)wcstombs(buf, t->wcs, n + 1);
409 printf("wcstombs(buf, \"%S\", %d) = \"%s\"\n", t->wcs,
479 ATF_TP_ADD_TC(tp, wcstombs);

Completed in 27 milliseconds