PostgreSQL Source Code  git master
ascii.h
Go to the documentation of this file.
1 /*-----------------------------------------------------------------------
2  * ascii.h
3  *
4  * Portions Copyright (c) 1999-2023, 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_ */
void ascii_safe_strlcpy(char *dest, const char *src, size_t destsiz)
Definition: ascii.c:174