diff options
Diffstat (limited to 'src/starter/args.h')
-rw-r--r-- | src/starter/args.h | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/src/starter/args.h b/src/starter/args.h index f5c13e6ba..76c05de8c 100644 --- a/src/starter/args.h +++ b/src/starter/args.h @@ -1,6 +1,6 @@ -/* automatic handling of confread struct arguments +/* * Copyright (C) 2006 Andreas Steffen - * Hochschule fuer Technik Rapperswil, Switzerland + * Hochschule fuer Technik Rapperswil * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -17,16 +17,11 @@ #define _ARGS_H_ #include "keywords.h" -#include "ipsec-parser.h" -extern char **new_list(char *value); -extern bool assign_arg(kw_token_t token, kw_token_t first, kw_list_t *kw - , char *base, bool *assigned); -extern void free_args(kw_token_t first, kw_token_t last, char *base); -extern void clone_args(kw_token_t first, kw_token_t last, char *base1 - , char *base2); -extern bool cmp_args(kw_token_t first, kw_token_t last, char *base1 - , char *base2); +bool assign_arg(kw_token_t token, kw_token_t first, char *key, char *value, + void *base, bool *assigned); +void free_args(kw_token_t first, kw_token_t last, void *base); +bool cmp_args(kw_token_t first, kw_token_t last, void *base1, void *base2); #endif /* _ARGS_H_ */ |