struct args_entry can go into arguments.c.

This commit is contained in:
nicm
2015-08-29 23:19:52 +00:00
parent 373ef850e0
commit 52bbac506c
2 changed files with 7 additions and 6 deletions

View File

@ -29,6 +29,12 @@
* Manipulate command arguments.
*/
struct args_entry {
u_char flag;
char *value;
RB_ENTRY(args_entry) entry;
};
struct args_entry *args_find(struct args *, u_char);
RB_GENERATE(args_tree, args_entry, entry, args_cmp);