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
18/* $Id: string.h,v 1.9 2001/01/09 21:57:37 bwelling Exp $ */
19
20#ifndef ISC_STRING_H
21#define ISC_STRING_H 1
22
23#include <string.h>
24
25#include <isc/int.h>
26#include <isc/lang.h>
27#include <isc/platform.h>
28
29ISC_LANG_BEGINDECLS
30
31isc_uint64_t
32isc_string_touint64(char *source, char **endp, int base);
33/*
34 * Convert the string pointed to by 'source' to isc_uint64_t.
35 *
36 * On successful conversion 'endp' points to the first character
37 * after conversion is complete.
38 *
39 * 'base': 0 or 2..36
40 *
41 * If base is 0 the base is computed from the string type.
42 *
43 * On error 'endp' points to 'source'.
44 */
45
46
47char *
48isc_string_separate(char **stringp, const char *delim);
49
50#ifdef ISC_PLATFORM_NEEDSTRSEP
51#define strsep isc_string_separate
52#endif
53
54ISC_LANG_ENDDECLS
55
56#endif /* ISC_STRING_H */
57