blob: 7d285d01ccd64f8546452030f13f3a60eb8c75a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef COMMON_H
#define COMMON_H
#include <c.h>
#include "settings.h"
char *
xstrdup(const char *string);
bool
setQFout(const char *fname);
char *
simple_prompt(const char *prompt, int maxlen, bool echo);
PGresult *
PSQLexec(const char *query);
bool
SendQuery(const char *query);
#endif /* COMMON_H */
|