From afd0cbc8a0cb5f8c45ab55cd443f330b9575ca97 Mon Sep 17 00:00:00 2001 From: szdytom Date: Tue, 11 Jun 2024 17:35:05 +0800 Subject: [PATCH] remove isascii marco --- include/pocketpy/common/str.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/include/pocketpy/common/str.h b/include/pocketpy/common/str.h index 34836cc8..f6842c91 100644 --- a/include/pocketpy/common/str.h +++ b/include/pocketpy/common/str.h @@ -13,10 +13,6 @@ typedef struct c11_string{ int size; } c11_string; -#ifndef isascii -#define isascii(c) ((unsigned)(c) < 0x80) -#endif - typedef struct pkpy_Str{ int size; bool is_ascii;