aboutsummaryrefslogtreecommitdiffstats
path: root/epan/value_string.h
diff options
context:
space:
mode:
authorEd Warnicke <hagbard@physics.rutgers.edu>2001-04-01 03:18:41 +0000
committerEd Warnicke <hagbard@physics.rutgers.edu>2001-04-01 03:18:41 +0000
commitc832ac2c35ff7c39882b0700808580912a365364 (patch)
tree9d7da71f90e656fadad511883b5ab3757a93d98f /epan/value_string.h
parent7e26a1681c32754b0aa03549682ebcf034471db7 (diff)
Moved the value_string structures and function from packet.{c,h} into
a separate value_string.{c,h}. svn path=/trunk/; revision=3221
Diffstat (limited to 'epan/value_string.h')
-rw-r--r--epan/value_string.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/epan/value_string.h b/epan/value_string.h
new file mode 100644
index 0000000000..b90d072a14
--- /dev/null
+++ b/epan/value_string.h
@@ -0,0 +1,44 @@
+/* value_string.h
+ * Definitions for value_string structures and routines
+ *
+ * $Id: value_string.h,v 1.1 2001/04/01 03:18:41 hagbard Exp $
+ *
+ * Ethereal - Network traffic analyzer
+ * By Gerald Combs <gerald@zing.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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __VALUE_STRING_H__
+#define __VALUE_STRING_H__
+
+#include <glib.h>
+
+/* Struct for the match_strval function */
+
+typedef struct _value_string {
+ guint32 value;
+ gchar *strptr;
+} value_string;
+
+gchar* match_strval(guint32, const value_string*);
+
+gchar* val_to_str(guint32, const value_string *, const char *);
+const char *decode_enumerated_bitfield(guint32 val, guint32 mask, int width,
+ const value_string *tab, const char *fmt);
+
+#endif /* __VALUE_STRING_H__ */