summaryrefslogtreecommitdiff
path: root/src/granger/src/strvec.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/granger/src/strvec.h')
-rw-r--r--src/granger/src/strvec.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/granger/src/strvec.h b/src/granger/src/strvec.h
new file mode 100644
index 0000000..69bab51
--- /dev/null
+++ b/src/granger/src/strvec.h
@@ -0,0 +1,36 @@
+/****************************************************************************
+ *
+ * Copyright (C) 2014 Cisco and/or its affiliates. All rights reserved.
+ * Copyright (C) 2009-2013 Sourcefire, Inc.
+ * Copyright (C) 2015-2019 GrangerHub
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License Version 3 as
+ * published by the Free Software Foundation. You may not use, modify or
+ * distribute this program under any other version of the GNU General
+ * Public License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
+ *
+ ****************************************************************************/
+
+#ifndef _STRVEC_H_
+#define _STRVEC_H_
+
+void* StringVector_New(void);
+void StringVector_Delete(void*);
+
+int StringVector_Add(void*, const char*);
+char* StringVector_Get(void*, unsigned index);
+
+int StringVector_AddVector(void* dst, void* src);
+const char** StringVector_GetVector(void*);
+const char* StringVector_toString(void*);
+
+#endif // _STRVEC_H_