aboutsummaryrefslogtreecommitdiff
path: root/zumo/strlutest/strlutest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'zumo/strlutest/strlutest.cpp')
-rw-r--r--zumo/strlutest/strlutest.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/zumo/strlutest/strlutest.cpp b/zumo/strlutest/strlutest.cpp
new file mode 100644
index 0000000..72ec591
--- /dev/null
+++ b/zumo/strlutest/strlutest.cpp
@@ -0,0 +1,10 @@
+#include <cstdio>
+
+#include "../protocol.h"
+
+int main() {
+ for (unsigned int i = 0; i < 15; i++) {
+ if (DUI_SIGN_LOOKUP[i] == NULL) continue;
+ printf("%d: %s\n", i, DUI_SIGN_LOOKUP[i]);
+ }
+}