Home
last modified time | relevance | path

Searched refs:tempstring (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libc/port/i18n/
H A Dwsscanf.c57 char *tempstring = stackbuf; in wsscanf() local
61 i = wcstombs(tempstring, string, MAXINSTR); in wsscanf()
66 tempstring = malloc(malloced = MB_CUR_MAX*wcslen(string)+1); in wsscanf()
67 if (tempstring == 0) in wsscanf()
69 i = wcstombs(tempstring, string, malloced); /* Try again. */ in wsscanf()
71 free(tempstring); in wsscanf()
77 j = vsscanf(tempstring, format, ap); in wsscanf()
79 if (malloced) free(tempstring); in wsscanf()
H A Dwsprintf.c50 char tempstring[1024]; in wsprintf() local
71 p2 = tempstring; in wsprintf()