/contrib/ntp/include/isc/string.h

https://bitbucket.org/freebsd/freebsd-head/ · C++ Header · 56 lines · 16 code · 11 blank · 29 comment · 0 complexity · c37871c7baa9d26229bfaf841594f439 MD5 · raw file

  1. /*
  2. * Copyright (C) 2000, 2001 Internet Software Consortium.
  3. *
  4. * Permission to use, copy, modify, and distribute this software for any
  5. * purpose with or without fee is hereby granted, provided that the above
  6. * copyright notice and this permission notice appear in all copies.
  7. *
  8. * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM
  9. * DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
  10. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
  11. * INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
  12. * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
  13. * FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
  14. * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
  15. * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  16. */
  17. /* $Id: string.h,v 1.9 2001/01/09 21:57:37 bwelling Exp $ */
  18. #ifndef ISC_STRING_H
  19. #define ISC_STRING_H 1
  20. #include <string.h>
  21. #include <isc/int.h>
  22. #include <isc/lang.h>
  23. #include <isc/platform.h>
  24. ISC_LANG_BEGINDECLS
  25. isc_uint64_t
  26. isc_string_touint64(char *source, char **endp, int base);
  27. /*
  28. * Convert the string pointed to by 'source' to isc_uint64_t.
  29. *
  30. * On successful conversion 'endp' points to the first character
  31. * after conversion is complete.
  32. *
  33. * 'base': 0 or 2..36
  34. *
  35. * If base is 0 the base is computed from the string type.
  36. *
  37. * On error 'endp' points to 'source'.
  38. */
  39. char *
  40. isc_string_separate(char **stringp, const char *delim);
  41. #ifdef ISC_PLATFORM_NEEDSTRSEP
  42. #define strsep isc_string_separate
  43. #endif
  44. ISC_LANG_ENDDECLS
  45. #endif /* ISC_STRING_H */