11 lines
157 B
C
11 lines
157 B
C
#ifndef OPTS_H
|
|
#define OPTS_H
|
|
|
|
#include <stddef.h>
|
|
#include <stdbool.h>
|
|
|
|
extern void get_env(void);
|
|
extern void parse_args(int argc, char * * argv);
|
|
|
|
#endif
|