X-Git-Url: https://deadsoftware.ru/gitweb?p=flatwaifu.git;a=blobdiff_plain;f=src%2Fcommon%2Fcp866.c;h=a28b297d5d36b2f367c893f1c9f35d1b1711e467;hp=b8ce2a451b5c6e82f2b36779c7f3ca1ce391e63e;hb=refs%2Fheads%2Frenders;hpb=5c603e0069a09b80bf58b5269cf2bbc6be152222 diff --git a/src/common/cp866.c b/src/common/cp866.c index b8ce2a4..a28b297 100644 --- a/src/common/cp866.c +++ b/src/common/cp866.c @@ -13,7 +13,7 @@ * along with this program. If not, see . */ -#include "cp866.h" +#include "common/cp866.h" int cp866_isalpha (int ch) { return (ch >= 0x41 && ch <= 0x5A) || (ch >= 0x61 && ch <= 0x7A) || (ch >= 0x80 && ch <= 0xAF) || (ch >= 0xE0 && ch <= 0xF7);