aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wmem/wmem_strbuf.h
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2012-12-15 00:46:36 +0000
committerEvan Huus <eapache@gmail.com>2012-12-15 00:46:36 +0000
commit92cfec56b8abd8cd04c0133763fea2ddbd9a197e (patch)
tree932fd1da7030208fe2663df9a0c18a06974984dd /epan/wmem/wmem_strbuf.h
parentd075b08ad29e9c25ab9c18063f8b5c962a6410d3 (diff)
Basic wmem string-buffer. Not yet feature-equivalent to the emem version.
svn path=/trunk/; revision=46540
Diffstat (limited to 'epan/wmem/wmem_strbuf.h')
-rw-r--r--epan/wmem/wmem_strbuf.h69
1 files changed, 69 insertions, 0 deletions
diff --git a/epan/wmem/wmem_strbuf.h b/epan/wmem/wmem_strbuf.h
new file mode 100644
index 0000000000..7fce32f8e4
--- /dev/null
+++ b/epan/wmem/wmem_strbuf.h
@@ -0,0 +1,69 @@
+/* wmem_strbuf.h
+ * Definitions for the Wireshark Memory Manager String Buffer
+ * Copyright 2012, Evan Huus <eapache@gmail.com>
+ *
+ * $Id$
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * 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, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+#ifndef __WMEM_STRBUF_H__
+#define __WMEM_STRBUF_H__
+
+#include <string.h>
+#include <glib.h>
+
+#include "wmem_core.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif /* __cplusplus */
+
+struct _wmem_strbuf_t;
+
+typedef struct _wmem_strbuf_t wmem_strbuf_t;
+
+wmem_strbuf_t *
+wmem_strbuf_sized_new(wmem_allocator_t *allocator,
+ gsize alloc_len, gsize max_len);
+
+wmem_strbuf_t *
+wmem_strbuf_new(wmem_allocator_t *allocator, const gchar *str);
+
+void
+wmem_strbuf_append(wmem_strbuf_t *strbuf, const gchar *str);
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif /* __WMEM_STRBUF_H__ */
+
+/*
+ * Editor modelines - http://www.wireshark.org/tools/modelines.html
+ *
+ * Local variables:
+ * c-basic-offset: 4
+ * tab-width: 8
+ * indent-tabs-mode: nil
+ * End:
+ *
+ * vi: set shiftwidth=4 tabstop=8 expandtab:
+ * :indentSize=4:tabSize=8:noTabs=true:
+ */