mirror of
https://github.com/irssi/irssi.git
synced 2026-08-14 22:22:15 +02:00
13 lines
216 B
C
13 lines
216 B
C
|
|
#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
|