blob: 72ec591f11376a3a0686351719df0b2c7ddaacdb (
plain)
1
2
3
4
5
6
7
8
9
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]);
}
}
|