ascii.h 420 B

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