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 13:48:53 -05: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-28 21:52:52 -05:00
#endif /* JSON_H */