Added SILC Thread Queue API
[crypto.git] / apps / irssi / src / core / args.h
1 #ifndef __ARGS_H
2 #define __ARGS_H
3
4 #ifdef HAVE_POPT_H
5 #  include <popt.h>
6 #else
7 #  include "lib-popt/popt.h"
8 #endif
9
10 extern GArray *iopt_tables;
11
12 void args_register(struct poptOption *options);
13 void args_execute(int argc, char *argv[]);
14
15 #endif