blob: 7761edd0a83f095f2cc16932a06729318f9fe548 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef MAIN_H
#define MAIN_H
#include "bool.h"
#include "string_length.h"
extern char* getParam(char *s);
extern char* getParamElse(char *s1, char *s2);
extern bool_t isParamFlag(char *s);
extern char *getString(int n);
extern void quit();
#endif
|