diff options
Diffstat (limited to 'src/include/common/string.h')
-rw-r--r-- | src/include/common/string.h | 7 |
1 files changed, 7 insertions, 0 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 */ |