mirror of
https://github.com/opnsense/src.git
synced 2026-03-01 21:01:24 -05:00
14 lines
330 B
C
14 lines
330 B
C
/*
|
|
* ntp_libopts.h
|
|
*
|
|
* Common code interfacing with Autogen's libopts command-line option
|
|
* processing.
|
|
*/
|
|
#ifndef NTP_LIBOPTS_H
|
|
# define NTP_LIBOPTS_H
|
|
# include "autoopts/options.h"
|
|
|
|
extern int ntpOptionProcess(tOptions *pOpts, int argc,
|
|
char ** argv);
|
|
extern void ntpOptionPrintVersion(tOptions *, tOptDesc *);
|
|
#endif
|