summaryrefslogtreecommitdiff
path: root/pg_array.h
diff options
context:
space:
mode:
Diffstat (limited to 'pg_array.h')
-rw-r--r--pg_array.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/pg_array.h b/pg_array.h
new file mode 100644
index 0000000..9bb0925
--- /dev/null
+++ b/pg_array.h
@@ -0,0 +1,24 @@
+/*-------------------------------------------------------------------------
+ * pg_array.h
+ *
+ * RDBMSMIB mib module.
+ *
+ * Copyright (c) 2004-2007, PostgreSQL Global Development Group
+ * Author: Joshua Tolley
+ *
+ * $Id: pg_array.h,v 1.5 2007/09/13 14:20:43 h-saito Exp $
+ *
+ *-------------------------------------------------------------------------
+ */
+
+#ifndef PG_ARRAY_H
+#define PG_ARRAY_H
+
+#include <stdlib.h>
+#include <string.h>
+#include <stdint.h>
+
+char **pg_text_array_parse(char* input, int *len);
+void pg_text_array_free(char **array, int len);
+
+#endif