Merge branch 'tor-gitlab/mr/583' into maint-0.4.7
[tor.git] / src / lib / string / parse_int.h
blob0bc98b1ef5822fa32f7af931a7ba56b7306a876b
1 /* Copyright (c) 2003, Roger Dingledine
2 * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
3 * Copyright (c) 2007-2021, The Tor Project, Inc. */
4 /* See LICENSE for licensing information */
6 /**
7 * \file parse_int.h
8 * \brief Header for parse_int.c
9 **/
11 #ifndef TOR_PARSE_INT_H
12 #define TOR_PARSE_INT_H
14 #include "lib/cc/torint.h"
16 long tor_parse_long(const char *s, int base, long min,
17 long max, int *ok, char **next);
18 unsigned long tor_parse_ulong(const char *s, int base, unsigned long min,
19 unsigned long max, int *ok, char **next);
20 double tor_parse_double(const char *s, double min, double max, int *ok,
21 char **next);
22 uint64_t tor_parse_uint64(const char *s, int base, uint64_t min,
23 uint64_t max, int *ok, char **next);
25 #endif /* !defined(TOR_PARSE_INT_H) */