diff options
Diffstat (limited to 'src/include/utils/ascii.h')
-rw-r--r-- | src/include/utils/ascii.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/include/utils/ascii.h b/src/include/utils/ascii.h new file mode 100644 index 0000000..c246f40 --- /dev/null +++ b/src/include/utils/ascii.h @@ -0,0 +1,16 @@ +/*----------------------------------------------------------------------- + * ascii.h + * + * Portions Copyright (c) 1999-2021, PostgreSQL Global Development Group + * + * src/include/utils/ascii.h + * + *----------------------------------------------------------------------- + */ + +#ifndef _ASCII_H_ +#define _ASCII_H_ + +extern void ascii_safe_strlcpy(char *dest, const char *src, size_t destsiz); + +#endif /* _ASCII_H_ */ |