Rename macro for compilation guard; prepare for #inclusion in C++
authorscottmk <scottmk@9efc2488-bf62-4759-914b-345cdb29e865>
Thu, 8 Jan 2009 17:13:58 +0000 (17:13 +0000)
committerscottmk <scottmk@9efc2488-bf62-4759-914b-345cdb29e865>
Thu, 8 Jan 2009 17:13:58 +0000 (17:13 +0000)
git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@1590 9efc2488-bf62-4759-914b-345cdb29e865

include/opensrf/xml_utils.h

index 42318f9..ebcc15a 100644 (file)
@@ -1,10 +1,14 @@
-#ifndef _XML_UTILS_H
-#define _XML_UTILS_H
+#ifndef XML_UTILS_H
+#define XML_UTILS_H
 
 #include <opensrf/osrf_json.h>
 #include <libxml/parser.h>
 #include <libxml/tree.h>
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 jsonObject* xmlDocToJSON(xmlDocPtr doc);
 
 /* debug function, prints each node and content */
@@ -29,5 +33,8 @@ char* xmlSaxAttr( const xmlChar** atts, const char* name );
  */
 int xmlAddAttrs( xmlNodePtr node, const xmlChar** atts );
 
+#ifdef __cplusplus
+}
+#endif
 
 #endif