1 /*
2  *	string.h
3  *		string handling helpers
4  *
5  *	Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
6  *	Portions Copyright (c) 1994, Regents of the University of California
7  *
8  *	src/include/common/string.h
9  */
10 #ifndef COMMON_STRING_H
11 #define COMMON_STRING_H
12 
13 extern bool pg_str_endswith(const char *str, const char *end);
14 
15 #endif   /* COMMON_STRING_H */
16