postgresql/src/include/utils/json.h

23 lines
565 B
C
Raw Normal View History

/*-------------------------------------------------------------------------
*
* json.h
* Declarations for JSON data type support.
*
2017-01-03 19:48:53 +01:00
* Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* src/include/utils/json.h
*
*-------------------------------------------------------------------------
*/
#ifndef JSON_H
#define JSON_H
#include "lib/stringinfo.h"
/* functions in json.c */
extern void escape_json(StringInfo buf, const char *str);
2012-02-29 03:52:52 +01:00
#endif /* JSON_H */