blob: 90b2d547b1fd87672ef118f85a39ab9b4cd25c58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef __ARGS_H
#define __ARGS_H
#ifdef HAVE_POPT_H
# include <popt.h>
#else
# include "lib-popt/popt.h"
#endif
void args_register(struct poptOption *options);
void args_execute(int argc, char *argv[]);
#endif
|