type: Make an assert()ion independent of the last entry of an enum.
[cparser] / help.h
1 /*
2  * This file is part of cparser.
3  * Copyright (C) 2012 Matthias Braun <matze@braunis.de>
4  */
5 #ifndef HELP_H
6 #define HELP_H
7
8 /**
9  * Display information about a commandline option
10  */
11 void put_help(const char *option, const char *explanation);
12
13 /**
14  * Display a choice value for a multiple-choice option
15  */
16 void put_choice(const char *choice, const char *explanation);
17
18 #endif