mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
16 lines
245 B
C
16 lines
245 B
C
|
#ifndef __ARGS_H
|
||
|
#define __ARGS_H
|
||
|
|
||
|
#ifdef HAVE_POPT_H
|
||
|
# include <popt.h>
|
||
|
#else
|
||
|
# include "lib-popt/popt.h"
|
||
|
#endif
|
||
|
|
||
|
extern GArray *iopt_tables;
|
||
|
|
||
|
void args_register(struct poptOption *options);
|
||
|
void args_execute(int argc, char *argv[]);
|
||
|
|
||
|
#endif
|