actube/src/cw/cw_ktv_get_word.c

12 lines
198 B
C
Raw Normal View History

2022-07-31 17:15:32 +02:00
#include "val.h"
uint16_t cw_ktv_get_word(mavl_t ktv,const char *key, uint16_t def)
{
2022-07-31 17:15:32 +02:00
cw_Val_t * k;
k = cw_ktv_get(ktv,key,CW_TYPE_WORD);
if (k != NULL){
return k->val.word;
}
return def;
}