Lines 46-52
Link Here
|
46 |
static enum dhcp_token read_string PROTO ((struct parse *)); |
46 |
static enum dhcp_token read_string PROTO ((struct parse *)); |
47 |
static enum dhcp_token read_number PROTO ((int, struct parse *)); |
47 |
static enum dhcp_token read_number PROTO ((int, struct parse *)); |
48 |
static enum dhcp_token read_num_or_name PROTO ((int, struct parse *)); |
48 |
static enum dhcp_token read_num_or_name PROTO ((int, struct parse *)); |
49 |
static enum dhcp_token intern PROTO ((unsigned char *, enum dhcp_token)); |
49 |
static enum dhcp_token intern PROTO ((char *, enum dhcp_token)); |
50 |
|
50 |
|
51 |
isc_result_t new_parse (cfile, file, inbuf, buflen, name, eolp) |
51 |
isc_result_t new_parse (cfile, file, inbuf, buflen, name, eolp) |
52 |
struct parse **cfile; |
52 |
struct parse **cfile; |
Lines 528-534
Link Here
|
528 |
} |
528 |
} |
529 |
|
529 |
|
530 |
static enum dhcp_token intern (atom, dfv) |
530 |
static enum dhcp_token intern (atom, dfv) |
531 |
unsigned char *atom; |
531 |
char *atom; |
532 |
enum dhcp_token dfv; |
532 |
enum dhcp_token dfv; |
533 |
{ |
533 |
{ |
534 |
if (!isascii (atom [0])) |
534 |
if (!isascii (atom [0])) |