From d9840479f52e4e99561d32a107d0ca1c8763cef4 Mon Sep 17 00:00:00 2001 From: Dave Gamble Date: Thu, 7 Jan 2010 23:07:58 +0000 Subject: [PATCH] Include ctype.h for tolower() git-svn-id: http://svn.code.sf.net/p/cjson/code@28 e3330c51-1366-4df0-8b21-3ccf24e3d50e --- cJSON.c | 1 + 1 file changed, 1 insertion(+) diff --git a/cJSON.c b/cJSON.c index 82eccbb..5bde16c 100644 --- a/cJSON.c +++ b/cJSON.c @@ -29,6 +29,7 @@ #include #include #include +#include #include "cJSON.h" static int cJSON_strcasecmp(const char *s1,const char *s2)