summaryrefslogtreecommitdiff
path: root/gsmsp/gsm/src/lib/id_list.h
diff options
context:
space:
mode:
Diffstat (limited to 'gsmsp/gsm/src/lib/id_list.h')
-rw-r--r--gsmsp/gsm/src/lib/id_list.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/gsmsp/gsm/src/lib/id_list.h b/gsmsp/gsm/src/lib/id_list.h
new file mode 100644
index 0000000..6ee12cc
--- /dev/null
+++ b/gsmsp/gsm/src/lib/id_list.h
@@ -0,0 +1,23 @@
+
+#ifndef __GSMSP_ID_LIST_H__
+#define __GSMSP_ID_LIST_H__ 1
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+struct _id_list
+{
+ int id;
+ const char *string;
+};
+
+const char *id_list_get(struct _id_list *id_list, int id);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* !__GSMSP_COMMON_H__ */
+
+
personal git repositories of Harald Welte. Your mileage may vary