mirror of
https://github.com/irssi/irssi.git
synced 2024-11-03 04:27:19 -05:00
c95034c6de
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@171 dbcabf3a-b0e7-0310-adc4-f8d773084564
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
|