From 3a49dfd198da706ffc5ccfc68125d8e332c1b354 Mon Sep 17 00:00:00 2001 From: Yukihiro Matsumoto Date: Wed, 12 Sep 2012 16:09:03 +0900 Subject: remoce duplicate declaration of TOUPPER/TOLOWER --- src/encoding.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/encoding.h b/src/encoding.h index 1312fb947..00cb92bd8 100644 --- a/src/encoding.h +++ b/src/encoding.h @@ -15,11 +15,6 @@ extern "C" { #include "oniguruma.h" #include "mruby/data.h" -int mrb_tolower(int c); -int mrb_toupper(int c); -#define TOUPPER(c) mrb_toupper((unsigned char)(c)) -#define TOLOWER(c) mrb_tolower((unsigned char)(c)) - #define FL_USHIFT 12 #define FL_USER0 (((int)1)<<(FL_USHIFT+0)) -- cgit v1.2.3