summaryrefslogtreecommitdiff
path: root/easytool/utils.h
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2010-08-12 18:29:31 +0800
committerHarald Welte <laforge@gnumonks.org>2010-08-12 18:29:31 +0800
commit4d4a06afcbc6ca1a2056ab2e4973b454eba59de3 (patch)
tree548e0ffbf36d7491f98c6c901bc094bce2ec534e /easytool/utils.h
parente59e499029c05a68156cdf9d61ceac54e6813d3a (diff)
split easytool into multiple files, add database of MRT station names
Diffstat (limited to 'easytool/utils.h')
-rw-r--r--easytool/utils.h10
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
personal git repositories of Harald Welte. Your mileage may vary