00001 /*----------------------------------------------------------------------- 00002 * ascii.h 00003 * 00004 * Portions Copyright (c) 1999-2013, PostgreSQL Global Development Group 00005 * 00006 * src/include/utils/ascii.h 00007 * 00008 *----------------------------------------------------------------------- 00009 */ 00010 00011 #ifndef _ASCII_H_ 00012 #define _ASCII_H_ 00013 00014 #include "fmgr.h" 00015 00016 extern Datum to_ascii_encname(PG_FUNCTION_ARGS); 00017 extern Datum to_ascii_enc(PG_FUNCTION_ARGS); 00018 extern Datum to_ascii_default(PG_FUNCTION_ARGS); 00019 00020 extern void ascii_safe_strlcpy(char *dest, const char *src, size_t destsiz); 00021 00022 #endif /* _ASCII_H_ */