blob: db709268568ce22f28552bf13b4b97da8f30ad04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef HELP_H
#define HELP_H
#include "settings.h"
void usage(void);
void slashUsage(void);
void helpSQL(const char *topic);
void print_copyright(void);
#endif
|