2
0

stringinfo_mb.h 667 B

123456789101112131415161718192021222324
  1. /*-------------------------------------------------------------------------
  2. *
  3. * stringinfo_mb.h
  4. * multibyte support for StringInfo
  5. *
  6. * Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group
  7. * Portions Copyright (c) 1994, Regents of the University of California
  8. *
  9. * src/include/mb/stringinfo_mb.h
  10. *-------------------------------------------------------------------------
  11. */
  12. #ifndef STRINGINFO_MB_H
  13. #define STRINGINFO_MB_H
  14. #include "lib/stringinfo.h"
  15. /*
  16. * Multibyte-aware StringInfo support function.
  17. */
  18. extern void appendStringInfoStringQuoted(StringInfo str,
  19. const char *s, int maxlen);
  20. #endif /* STRINGINFO_MB_H */