blob: 012d446f13da2184d8a29a44eb65090f48d8da53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef MAIN_H
#define MAIN_H
#include "bool.h"
#include "string_length.h"
extern char* getParam(char *s);
extern char *getString(int n);
extern void quit();
#endif
|