Home
last modified time | relevance | path

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

/bionic/libc/stdio/
Dvfwscanf.c83 #define CT_STRING 2 /* %s conversion */ macro
290 c = CT_STRING; in __vfwscanf()
405 case CT_STRING: in __vfwscanf()
411 …) != WEOF && width-- != 0 && ((c == CT_CCL && in_ccl(wi, ccl)) || (c == CT_STRING && !iswspace(wi)… in __vfwscanf()
415 …) != WEOF && width-- != 0 && ((c == CT_CCL && in_ccl(wi, ccl)) || (c == CT_STRING && !iswspace(wi)… in __vfwscanf()
424 …p)) != WEOF && width != 0 && ((c == CT_CCL && in_ccl(wi, ccl)) || (c == CT_STRING && !iswspace(wi)… in __vfwscanf()
Dvfscanf.cpp77 #define CT_STRING 2 // %s conversion macro
241 c = CT_STRING; in __svfscanf()
296 if ((flags & ALLOCATE) != 0 && c > CT_STRING) { in __svfscanf()
417 case CT_STRING: in __svfscanf()
450 … if ((c == CT_CCL && wctob(wc) != EOF && !ccltab[wctob(wc)]) || (c == CT_STRING && iswspace(wc))) { in __svfscanf()