1 /*-------------------------------------------------------------------------
4 * multibyte support for StringInfo
6 * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group
7 * Portions Copyright (c) 1994, Regents of the University of California
9 * src/include/mb/stringinfo_mb.h
10 *-------------------------------------------------------------------------
12 #ifndef STRINGINFO_MB_H
13 #define STRINGINFO_MB_H
16 #include "lib/stringinfo.h"
19 * Multibyte-aware StringInfo support function.
21 extern void appendStringInfoStringQuoted(StringInfo str
,
22 const char *s
, int maxlen
);
24 #endif /* STRINGINFO_MB_H */