Simon Rozman 63fda12c99 Switch integer datatypes to C99
This makes code more portable.

Signed-off-by: Simon Rozman <simon@rozman.si>
2022-09-15 14:36:44 +02:00

23 lines
434 B
C

/*
SPDX-License-Identifier: GPL-3.0-or-later
Copyright © 2015-2022 Amebis
*/
#ifndef __PCH_H__
#define __PCH_H__
#include "../../../include/version.h"
#include "../include/zrcola/character.h"
#include "../include/zrcola/highlight.h"
#include "../include/zrcola/language.h"
#include "../include/zrcola/translate.h"
#include "../include/zrcola/tag.h"
#include <assert.h>
#include <algorithm>
#include <cwctype>
#endif