You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
postgres/src/bin/psql/common.h

23 lines
328 B

#ifndef COMMON_H
#define COMMON_H
#include <c.h>
#include "settings.h"
char *
26 years ago
xstrdup(const char *string);
bool
setQFout(const char *fname);
char *
26 years ago
simple_prompt(const char *prompt, int maxlen, bool echo);
26 years ago
PGresult *
PSQLexec(const char *query);
bool
SendQuery(const char *query);
26 years ago
#endif /* COMMON_H */