diff options
author | Joshua Tolley | 2010-11-26 17:22:01 +0000 |
---|---|---|
committer | Joshua Tolley | 2010-11-26 17:22:01 +0000 |
commit | fe9d8f21bbdfb442b8233b4627a0c67dc458a8bd (patch) | |
tree | a88daa49fc47e64777af3d331cf142e0604c2d48 /pg_array.h |
Diffstat (limited to 'pg_array.h')
-rw-r--r-- | pg_array.h | 24 |
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 |