Home
last modified time | relevance | path

Searched refs:wstring (Results 1 – 7 of 7) sorted by relevance

/titanic_41/usr/src/lib/libtsol/common/
H A Dbtos.c320 wchar_t *wstring; in sbsltos() local
354 if ((wstring = malloc(slen * sizeof (wchar_t))) == NULL) in sbsltos()
356 if ((wccount = mbstowcs(wstring, sstring, slen - 1)) == -1) { in sbsltos()
357 free(wstring); in sbsltos()
361 wchar_t *clipp = wstring + (len - 2); in sbsltos()
369 while (wcstombs(NULL, wstring, 0) >= ssize) { in sbsltos()
381 if ((wccount = wcstombs(sstring, wstring, ssize)) == -1) { in sbsltos()
382 free(wstring); in sbsltos()
386 free(wstring); in sbsltos()
416 wchar_t *wstring; in sbcleartos() local
[all …]
/titanic_41/usr/src/lib/libc/port/i18n/
H A Dwsprintf.c49 wsprintf(wchar_t *wstring, const char *format, ...) in wsprintf() argument
56 char *p1 = (char *)wstring; in wsprintf()
76 if (mbstowcs(wstring, p2, len) == (size_t)-1) { in wsprintf()
78 if ((retcode = mbtowc(wstring, p2, MB_CUR_MAX)) == -1) { in wsprintf()
79 *wstring = (wchar_t)*p2 & 0xff; in wsprintf()
84 if (*wstring++ == (wchar_t)0) { in wsprintf()
92 len = wcslen(wstring); in wsprintf()
/titanic_41/usr/src/cmd/look/
H A Dlook.c41 char *wstring, *ptr; in main() local
79 wstring = strdup(argv[1]); in main()
81 if ((ptr = strchr(wstring, tab)) != NULL) { in main()
85 canon(wstring,key); in main()
/titanic_41/usr/src/lib/libc/port/stdio/
H A Ddoscan.c87 static int wstring(int *, int *, int, int, int, FILE *, va_list *);
535 size = wstring(&chcount, &flag_eof, stow, in __wdoscan_u()
976 wstring(int *chcount, int *flag_eof, int stow, int type, in wstring() function
1012 wstring(int *chcount, int *flag_eof, int stow, int type, int len, FILE *iop, in wstring() function
/titanic_41/usr/src/man/man3c/
H A DMakefile533 wstring.3c \
2360 wscasecmp.3c := LINKSRC = wstring.3c
2361 wscol.3c := LINKSRC = wstring.3c
2362 wsdup.3c := LINKSRC = wstring.3c
2363 wsncasecmp.3c := LINKSRC = wstring.3c
/titanic_41/usr/src/pkg/manifests/
H A Dsystem-library.man3c.inc528 file path=usr/share/man/man3c/wstring.3c
1381 link path=usr/share/man/man3c/wscasecmp.3c target=wstring.3c
1385 link path=usr/share/man/man3c/wscol.3c target=wstring.3c
1389 link path=usr/share/man/man3c/wsdup.3c target=wstring.3c
1391 link path=usr/share/man/man3c/wsncasecmp.3c target=wstring.3c
/titanic_41/usr/src/lib/libc/port/
H A Dllib-lc1566 int wsprintf(wchar_t *wstring, const char *format, ...);