Home
last modified time | relevance | path

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

/dports/mail/mblaze/mblaze-1.1/
H A Dblaze822.c20 parse_posint(char **s, size_t minn, size_t maxn) in parse_posint() function
57 if ((c = parse_posint(&s, 1, 31)) < 0) goto fail; in blaze822_date()
83 if ((c = parse_posint(&s, 1000, 9999)) > 0) { in blaze822_date()
85 } else if ((c = parse_posint(&s, 0, 49)) > 0) { in blaze822_date()
87 } else if ((c = parse_posint(&s, 50, 99)) > 0) { in blaze822_date()
94 if ((c = parse_posint(&s, 0, 24)) < 0) goto fail; in blaze822_date()
97 if ((c = parse_posint(&s, 0, 59)) < 0) goto fail; in blaze822_date()
100 if ((c = parse_posint(&s, 0, 61)) < 0) goto fail; in blaze822_date()
112 if ((c = parse_posint(&s, 0, 10000)) < 0) goto fail; in blaze822_date()