@@ -4,7 +4,8 @@
#include <sys/types.h>
#define var_type_name(x) (x & VAR_DETECTED) ? "detect" : (x & VAR_BOOL) ? "bool" : (x & VAR_INT) ? "int" :\
- (x & VAR_LIST) ? "list" : (x & VAR_STRING) ? "string" : (x & VAR_RATE) ? "rate" : ""
+ (x & VAR_LIST) ? "list" : (x & VAR_STRING) ? "string" : (x & VAR_RATE) ? "rate" :\
+ (x & VAR_WORD) ? "word" : ""
#define VAR_INT BIT0
#define VAR_STRING BIT1