From 956203ad8df7b68af83ae94f7793a028c74113ee Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Tue, 25 Nov 2008 11:11:49 +0530 Subject: Initial import of gsmsp-0.2a --- gsmsp/gsm/src/lib/id_list.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 gsmsp/gsm/src/lib/id_list.h (limited to 'gsmsp/gsm/src/lib/id_list.h') 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__ */ + + -- cgit v1.2.3