summaryrefslogtreecommitdiff
path: root/util.h
blob: b5a043f3d2f5a864730639fc3179f004cf48d75a (plain)
1
2
3
4
5
6
7
8
9
10
11
/*
 * Wrappers around strtoull/strtoll that are safer and easier to
 * use.  For tests and assumptions, see internal_tests.c.
 *
 * str   a NULL-terminated base decimal 10 unsigned integer
 * out   out parameter, if conversion succeeded
 *
 * returns true if conversion succeeded.
 */
bool safe_strtoull(const char *str, uint64_t *out);
bool safe_strtoll(const char *str, int64_t *out);