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

include/opensrf/osrf_legacy_json.h

index a74fb1f..caa874e 100644 (file)
@@ -25,9 +25,11 @@ GNU General Public License for more details.
 #include <opensrf/osrf_json.h>
 #include <ctype.h>
 
+#ifdef __cplusplus
+extern "C" {
+#endif
 
-
-/* Parses the given JSON string and returns the built object. 
+/* Parses the given JSON string and returns the built object.
  *     returns NULL (and prints parser error to stderr) on error.  
  */
 
@@ -123,6 +125,9 @@ jsonObjectNode* jsonObjectIteratorNext(jsonObjectIterator* iter);
  */
 int jsonObjectIteratorHasNext(const jsonObjectIterator* iter);
 
+#ifdef __cplusplus
+}
+#endif
 
 #endif