/ndk/sources/host-tools/sed-4.2.1/lib/ |
mbrtowc.c | 24 /* Implement mbrtowc() on top of mbtowc(). */ 39 mbrtowc (wchar_t *pwc, const char *s, size_t n, mbstate_t *ps) function 113 sequences. But mbrtowc needs to make this distinction. 118 lack mbrtowc(), we use the second approach. 317 /* Override the system's mbrtowc() function. */ 319 # undef mbrtowc macro 337 /* Override mbrtowc's internal state. We can not call mbsinit() on the 349 size_t ret = mbrtowc (&wc, s, 1, ps); 370 size_t ret = mbrtowc (&wc, s, n, ps); 382 return mbrtowc (pwc, s, n, ps) [all...] |
/bionic/libc/stdlib/ |
wchar.c | 191 size_t mbrtowc(wchar_t *pwc, const char *s, size_t n, mbstate_t *ps) function
|
/external/bison/lib/ |
quotearg.c | 56 # define mbrtowc(pwc, s, n, ps) ((*(pwc) = *(s)) != 0) macro 360 we should check them with mbrtowc, but in practice this 429 size_t bytes = mbrtowc (&w, &arg[i + m],
|