Prepare for #inclusion in C++
authorscottmk <scottmk@9efc2488-bf62-4759-914b-345cdb29e865>
Thu, 8 Jan 2009 21:18:31 +0000 (21:18 +0000)
committerscottmk <scottmk@9efc2488-bf62-4759-914b-345cdb29e865>
Thu, 8 Jan 2009 21:18:31 +0000 (21:18 +0000)
git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@1602 9efc2488-bf62-4759-914b-345cdb29e865

include/opensrf/osrf_json_utils.h

index 53faefa..5331574 100644 (file)
@@ -16,6 +16,10 @@ GNU General Public License for more details.
 #ifndef OSRF_JSON_UTILS_H
 #define OSRF_JSON_UTILS_H
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 /* ----------------------------------------------------------------------- */
 /* Clients need not include this file.  These are internal utilities only      */
 /* ----------------------------------------------------------------------- */
@@ -96,5 +100,9 @@ int _jsonParserHandleNumber( jsonParserContext* ctx );
 
 void _jsonInsertParserItem( jsonInternalParser* p, jsonObject* newo );
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif