postgresql/src/include/mb/stringinfo_mb.h
Bruce Momjian c8e1ba736b Update copyright for 2023
Backpatch-through: 11
2023-01-02 15:00:37 -05:00

24 lines
667 B
C

/*-------------------------------------------------------------------------
*
* stringinfo_mb.h
* multibyte support for StringInfo
*
* Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* src/include/mb/stringinfo_mb.h
*-------------------------------------------------------------------------
*/
#ifndef STRINGINFO_MB_H
#define STRINGINFO_MB_H
#include "lib/stringinfo.h"
/*
* Multibyte-aware StringInfo support function.
*/
extern void appendStringInfoStringQuoted(StringInfo str,
const char *s, int maxlen);
#endif /* STRINGINFO_MB_H */