commit cb9f06722601700c0d73f02210095d2b7a7b449e
parent cf8b01376002ea6b1d79b3a61fc4a86615608055
Author: Frederic Cambus <fred@statdns.com>
Date: Sat, 3 Nov 2018 21:00:28 +0100
Add some macros to define CR, LF, TAB, and SUB characters
Diffstat:
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/src/loaders/pcboard.c b/src/loaders/pcboard.c
@@ -19,6 +19,11 @@
#include "fonts.h"
#include "output.h"
+#define CR '\r'
+#define LF '\n'
+#define TAB '\t'
+#define SUB 26
+
/* Character structure */
struct pcbChar {
uint32_t column;