diff options
Diffstat (limited to 'easytool/utils.h')
-rw-r--r-- | easytool/utils.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/easytool/utils.h b/easytool/utils.h new file mode 100644 index 0000000..ee446cd --- /dev/null +++ b/easytool/utils.h @@ -0,0 +1,10 @@ +#ifndef UTILS_H +#define UTILS_H + +struct value_string { + unsigned int value; + const char *str; +}; +const char *get_value_string(const struct value_string *vs, uint32_t val); + +#endif |