prepare for #inclusion in C++
git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@1595
9efc2488-bf62-4759-914b-
345cdb29e865
+#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);}
void osrfStringArrayRemove( osrfStringArray* arr, char* str);
+#ifdef __cplusplus
+}
+#endif
+
#endif