blob: 544dd3fc357a67ea957a68eb694ad0b77c8ce0be (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef __FOODOPTS_H
#define __FOODOPTS_H
#include <getopt.h>
/**
* This is a wrapper on getopt.h, specifically
*
* It provides a unified interface for defining
* cli options, printing the help, and looping though
* the parsing results.
*
*/
#endif /* __FOODOPTS_H */
|