summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorKatolaZ <katolaz@freaknet.org>2019-07-27 06:57:12 +0100
committerKatolaZ <katolaz@freaknet.org>2019-07-27 06:57:12 +0100
commit8e3d23b921d9bbcb7c53017bacff8a3050a34b55 (patch)
treefc26ae9768e6c72827b03e973dbf0479b0a0431d /config.h
parent3d53fcefe3ca3e6f25d1731c2caa0c1c0e676453 (diff)
reorganise code
Diffstat (limited to 'config.h')
-rw-r--r--config.h14
1 files changed, 9 insertions, 5 deletions
diff --git a/config.h b/config.h
index a9e5ddc..fa2eb7a 100644
--- a/config.h
+++ b/config.h
@@ -1,18 +1,22 @@
/* This is part of `gramscii`` -- see COPYING for details */
+#ifndef __LOCAL_CONFIG_H__
+#define __LOCAL_CONFIG_H__
/* Config options */
/** MARKERS -- the first character is the default one **/
/* markers for horizontal lines */
-char hlines[] = {"-~=#*@._ "};
+static char hlines[] = {"-~=#*@._ "};
/* markers for vertical lines */
-char vlines[] = {"|H#*@:;i "};
+static char vlines[] = {"|H#*@:;i "};
/* markers for corners */
-char corners[] = {"+'H#*@.\"`"};
+static char corners[] = {"+'H#*@.\"`"};
/* markers for arrow start points */
-char st_marks[] = {"+o-|<>^v*"};
+static char st_marks[] = {"+o-|<>^v*"};
/* markers for arrow endpoints */
-char end_marks[] = {">+o-|<^v*"};
+static char end_marks[] = {">+o-|<^v*"};
/** LONG_STEP (movements through uppercase HJKL) **/
#define LONG_STEP 5
+
+#endif