This makes code more portable. Signed-off-by: Simon Rozman <simon@rozman.si>
23 lines
434 B
C
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
|