summaryrefslogtreecommitdiff
path: root/src/tables.h
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2015-03-07 16:55:42 +0100
committerBardur Arantsson <bardur@scientician.net>2015-03-07 16:55:42 +0100
commitf93c700dc8320da438ad46b59b2541e29d9b6d68 (patch)
tree3619606dd2bf7e4e64afcc6aba80bb5573cb0ef5 /src/tables.h
parente4fee3d69f86395e91800e4e59c6bc7ec8a5bd52 (diff)
Split tables.cc declarations into separate header files
Diffstat (limited to 'src/tables.h')
-rw-r--r--src/tables.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/tables.h b/src/tables.h
new file mode 100644
index 00000000..9a5cfb58
--- /dev/null
+++ b/src/tables.h
@@ -0,0 +1,12 @@
+#pragma once
+
+// C linkage required for these functions since main-* code uses them.
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+extern char hexsym[16];
+
+#ifdef __cplusplus
+} // extern "C"
+#endif