aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/output.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/output.h')
-rw-r--r--src/output.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/output.h b/src/output.h
index ca390d4..eb17e16 100644
--- a/src/output.h
+++ b/src/output.h
@@ -3,19 +3,17 @@
#ifndef OUTPUT_H
#define OUTPUT_H
-#include <wchar.h>
-
#include "deco.h"
-#define ASC 0x2197 /* Unicode North East Arrow */
-#define LVL 0x2192 /* Unicode Rightwards Arrow */
-#define DEC 0x2198 /* Unicode South East Arrow */
-#define SWI 0x21BB /* Clockwise Open Circle Arrow */
-#define LTR 0x2113 /* Script Small L */
+#define ASC "\xe2\x86\x97" /* Unicode North East Arrow */
+#define LVL "\xe2\x86\x92" /* Unicode Rightwards Arrow */
+#define DEC "\xe2\x86\x98" /* Unicode South East Arrow */
+#define SWI "\xe2\x86\xBB" /* Clockwise Open Circle Arrow */
+#define LTR "\xe2\x84\x93" /* Script Small L */
/* functions */
void print_planhead(void);
-void print_planline(wchar_t sign, double depth, double time, double runtime, const gas_t *gas);
+void print_planline(char *sign, double depth, double time, double runtime, const gas_t *gas);
void print_planfoot(const decostate_t *ds);
void print_disclaimer(void);