parse_int.h 840 B

12345678910111213141516171819202122232425
  1. /* Copyright (c) 2003, Roger Dingledine
  2. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  3. * Copyright (c) 2007-2018, The Tor Project, Inc. */
  4. /* See LICENSE for licensing information */
  5. /**
  6. * \file parse_int.h
  7. * \brief Header for parse_int.c
  8. **/
  9. #ifndef TOR_PARSE_INT_H
  10. #define TOR_PARSE_INT_H
  11. #include "lib/cc/torint.h"
  12. long tor_parse_long(const char *s, int base, long min,
  13. long max, int *ok, char **next);
  14. unsigned long tor_parse_ulong(const char *s, int base, unsigned long min,
  15. unsigned long max, int *ok, char **next);
  16. double tor_parse_double(const char *s, double min, double max, int *ok,
  17. char **next);
  18. uint64_t tor_parse_uint64(const char *s, int base, uint64_t min,
  19. uint64_t max, int *ok, char **next);
  20. #endif