aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/output.h
blob: 829e23a7e3003fbbd147d98e7e667ede400ad869 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* SPDX-License-Identifier: MIT-0 */

#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 0x1F5D8 /* Clockwise Right and Left Semicircle Arrows */

void print_planhead();
void print_planline(const wchar_t sign, const double depth, const double time, const double runtime, const gas_t *gas);
void print_planfoot(const decostate_t *ds);

void scan_gas(gas_t *gas, char *str);

#endif /* end of include guard: OUTPUT_H */