diff options
author | Erich Eckner <git@eckner.net> | 2018-11-01 13:03:42 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2018-11-01 13:03:42 +0100 |
commit | 010ebe05197f5b738fe7eb78a1c8ec135d93e516 (patch) | |
tree | 645c693d85bf5b889a57f78fda7b43df09a51d52 /fonts.h | |
parent | a9679f6210fad1b1d8b05529dd6f4443c633365b (diff) | |
download | anzeige-010ebe05197f5b738fe7eb78a1c8ec135d93e516.tar.xz |
include *.h files only once
Diffstat (limited to 'fonts.h')
-rw-r--r-- | fonts.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,6 @@ +#ifndef FONTS_H +#define FONTS_H + #include <uchar.h> #define MAX_SYMBOL_WIDTH 6 @@ -136,3 +139,5 @@ static int symbols_boundaries[SYMBOL_COUNT][2]; void init_symbols_boundaries(); int render(char *input, int input_len, char *output, int max_output_len, int skip_unprintables); + +#endif // FONTS_H |