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