diff options
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/common/string.h | 7 | ||||
| -rw-r--r-- | src/include/port.h | 4 |
2 files changed, 7 insertions, 4 deletions
diff --git a/src/include/common/string.h b/src/include/common/string.h index 5113c04434c..18aa1dc5aa5 100644 --- a/src/include/common/string.h +++ b/src/include/common/string.h @@ -10,10 +10,17 @@ #ifndef COMMON_STRING_H #define COMMON_STRING_H +/* functions in src/common/string.c */ extern bool pg_str_endswith(const char *str, const char *end); extern int strtoint(const char *pg_restrict str, char **pg_restrict endptr, int base); extern void pg_clean_ascii(char *str); extern int pg_strip_crlf(char *str); +/* functions in src/common/pg_get_line.c */ +extern char *pg_get_line(FILE *stream); + +/* functions in src/common/sprompt.c */ +extern char *simple_prompt(const char *prompt, bool echo); + #endif /* COMMON_STRING_H */ diff --git a/src/include/port.h b/src/include/port.h index 271ff0d00bc..84bf2c363f5 100644 --- a/src/include/port.h +++ b/src/include/port.h @@ -213,10 +213,6 @@ extern char *pg_strerror_r(int errnum, char *buf, size_t buflen); /* Wrap strsignal(), or provide our own version if necessary */ extern const char *pg_strsignal(int signum); -/* Portable prompt handling */ -extern void simple_prompt(const char *prompt, char *destination, size_t destlen, - bool echo); - extern int pclose_check(FILE *stream); /* Global variable holding time zone information. */ |
