1 /*-----------------------------------------------------------------------
2  * ascii.h
3  *
4  *	 Portions Copyright (c) 1999-2017, PostgreSQL Global Development Group
5  *
6  * src/include/utils/ascii.h
7  *
8  *-----------------------------------------------------------------------
9  */
10 
11 #ifndef _ASCII_H_
12 #define _ASCII_H_
13 
14 extern void ascii_safe_strlcpy(char *dest, const char *src, size_t destsiz);
15 
16 #endif							/* _ASCII_H_ */
17