Don't repeatedly register cache callbacks in pgoutput plugin.
[pgsql.git] / src / include / common / string.h
blob77f31337ca43ea7e3986dce2a3a119d9b9a9a942
1 /*
2 * string.h
3 * string handling helpers
5 * Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
6 * Portions Copyright (c) 1994, Regents of the University of California
8 * src/include/common/string.h
9 */
10 #ifndef COMMON_STRING_H
11 #define COMMON_STRING_H
13 extern bool pg_str_endswith(const char *str, const char *end);
14 extern int strtoint(const char *pg_restrict str, char **pg_restrict endptr,
15 int base);
16 extern void pg_clean_ascii(char *str);
18 #endif /* COMMON_STRING_H */