PostgreSQL Source Code  git master
stringinfo_mb.h
Go to the documentation of this file.
1 /*-------------------------------------------------------------------------
2  *
3  * stringinfo_mb.h
4  * multibyte support for StringInfo
5  *
6  * Portions Copyright (c) 1996-2024, 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 
15 
16 #include "lib/stringinfo.h"
17 
18 /*
19  * Multibyte-aware StringInfo support function.
20  */
22  const char *s, int maxlen);
23 
24 #endif /* STRINGINFO_MB_H */
void appendStringInfoStringQuoted(StringInfo str, const char *s, int maxlen)
Definition: stringinfo_mb.c:34