Home
last modified time | relevance | path

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

/third_party/curl/lib/
Dftp.c2046 static int twodigit(const char *p) in twodigit() function
2057 *year = twodigit(&p[0]) * 100 + twodigit(&p[2]); in ftp_213_date()
2058 *month = twodigit(&p[4]); in ftp_213_date()
2059 *day = twodigit(&p[6]); in ftp_213_date()
2060 *hour = twodigit(&p[8]); in ftp_213_date()
2061 *minute = twodigit(&p[10]); in ftp_213_date()
2062 *second = twodigit(&p[12]); in ftp_213_date()