9 lines
164 B
C
9 lines
164 B
C
#ifndef OPTS_H
|
|
#define OPTS_H
|
|
|
|
// NOTE: these two should not clobber on globals
|
|
extern void get_env(void);
|
|
extern void parse_args(int argc, char * * argv);
|
|
|
|
#endif
|