ascii.h 579 B

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