Sync usage with man page.
[netbsd-mini2440.git] / dist / ntp / include / isc / string.h
blobd83adc051a7dde2de3f53f38aed12ea656a56d59
1 /* $NetBSD$ */
3 /*
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 */
22 #ifndef ISC_STRING_H
23 #define ISC_STRING_H 1
25 #include <string.h>
27 #include <isc/int.h>
28 #include <isc/lang.h>
29 #include <isc/platform.h>
31 ISC_LANG_BEGINDECLS
33 isc_uint64_t
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.
41 * 'base': 0 or 2..36
43 * If base is 0 the base is computed from the string type.
45 * On error 'endp' points to 'source'.
49 char *
50 isc_string_separate(char **stringp, const char *delim);
52 #ifdef ISC_PLATFORM_NEEDSTRSEP
53 #define strsep isc_string_separate
54 #endif
56 ISC_LANG_ENDDECLS
58 #endif /* ISC_STRING_H */