gsm_utils: add function to get value strings for gsm48_chan_mode

The enum gsm48_chan_mode has value strings, but no function to retrieve
those strings. Lets add one.

Change-Id: If715705e1ebdfcfdfae1c2099932f7bb8b3861a7
This commit is contained in:
Philipp Maier 2018-09-25 13:05:40 +02:00
parent 5398911ddb
commit b066305016
1 changed files with 2 additions and 0 deletions

View File

@ -228,6 +228,8 @@ enum gsm_chan_t {
};
extern const struct value_string gsm_chan_t_names[];
static inline const char *gsm_chan_t_name(enum gsm48_chan_mode val)
{ return get_value_string(gsm_chan_t_names, val); }
/* Deprectated functions */
/* Limit encoding and decoding to use no more than this amount of buffer bytes */