Home
last modified time | relevance | path

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

/bionic/libc/tzcode/
Dlocaltime.c741 getzname(register const char *strp) in getzname() argument
745 while ((c = *strp) != '\0' && !is_digit(c) && c != ',' && c != '-' && in getzname()
747 ++strp; in getzname()
748 return strp; in getzname()
761 getqzname(register const char *strp, const int delim) in getqzname() argument
765 while ((c = *strp) != '\0' && c != delim) in getqzname()
766 ++strp; in getqzname()
767 return strp; in getqzname()
778 getnum(register const char *strp, int *const nump, const int min, const int max) in getnum() argument
783 if (strp == NULL || !is_digit(c = *strp)) in getnum()
[all …]
/bionic/libc/upstream-openbsd/lib/libc/stdio/
Dvswscanf.c61 const wchar_t *strp; in vswscanf() local
71 strp = str; in vswscanf()
72 if ((mlen = wcsrtombs(mbstr, &strp, len, &mbs)) == (size_t)-1) { in vswscanf()