Move nested headers into complation guard;
authorscottmk <scottmk@9efc2488-bf62-4759-914b-345cdb29e865>
Thu, 8 Jan 2009 18:29:33 +0000 (18:29 +0000)
committerscottmk <scottmk@9efc2488-bf62-4759-914b-345cdb29e865>
Thu, 8 Jan 2009 18:29:33 +0000 (18:29 +0000)
prepare for #inclusion in C++

git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@1595 9efc2488-bf62-4759-914b-345cdb29e865

include/opensrf/string_array.h

index b78b0b8..0df884d 100644 (file)
@@ -1,13 +1,17 @@
+#ifndef STRING_ARRAY_H
+#define STRING_ARRAY_H
+
 #include <stdio.h>
 
 #include <opensrf/utils.h>
 #include <opensrf/log.h>
 #include <opensrf/osrf_list.h>
 
-#define STRING_ARRAY_MAX_SIZE 4096
+#ifdef __cplusplus
+extern "C" {
+#endif
 
-#ifndef STRING_ARRAY_H
-#define STRING_ARRAY_H
+#define STRING_ARRAY_MAX_SIZE 4096
 
 #define OSRF_STRING_ARRAY_FREE(arr)\
     if(arr) {osrfListFree(arr->list); free(arr);}
@@ -35,4 +39,8 @@ int string_array_get_total_size(osrfStringArray* arr);
 
 void osrfStringArrayRemove( osrfStringArray* arr, char* str);
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif