summaryrefslogtreecommitdiffstats
path: root/snc.h
diff options
context:
space:
mode:
Diffstat (limited to 'snc.h')
-rw-r--r--snc.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/snc.h b/snc.h
new file mode 100644
index 0000000..e84ca5c
--- /dev/null
+++ b/snc.h
@@ -0,0 +1,14 @@
+#ifndef SNC_NUMBERS_H
+#define SNC_NUMBERS_H
+
+enum {
+ SNC_ROMAN_I = 1,
+ SNC_ROMAN_V = 5,
+ SNC_ROMAN_X = 10,
+ SNC_ROMAN_L = 50,
+ SNC_ROMAN_C = 100,
+ SNC_ROMAN_D = 500,
+ SNC_ROMAN_M = 1000
+};
+
+#endif /* SNC_NUMBERS_H */