Home
last modified time | relevance | path

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

/titanic_53/usr/src/lib/libc/port/i18n/
H A Dwsscanf.c59 char *tempstring = stackbuf; in wsscanf() local
63 i = wcstombs(tempstring, string, MAXINSTR); in wsscanf()
68 tempstring = malloc(malloced = MB_CUR_MAX*wcslen(string)+1); in wsscanf()
69 if (tempstring == 0) in wsscanf()
71 i = wcstombs(tempstring, string, malloced); /* Try again. */ in wsscanf()
73 free(tempstring); in wsscanf()
79 j = vsscanf(tempstring, format, ap); in wsscanf()
81 if (malloced) free(tempstring); in wsscanf()
H A Dwsprintf.c52 char tempstring[1024]; in wsprintf() local
73 p2 = tempstring; in wsprintf()