资源简介
包含创建好的cJson的.C文件及.h文件及测试示例,开发者可依据测试示例直接进行调用
代码片段和文件信息
/*
Copyright (c) 2009 Dave Gamble
Permission is hereby granted free of charge to any person obtaining a copy
of this software and associated documentation files (the “Software“) to deal
in the Software without restriction including without limitation the rights
to use copy modify merge publish distribute sublicense and/or sell
copies of the Software and to permit persons to whom the Software is
furnished to do so subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS“ WITHOUT WARRANTY OF ANY KIND EXPRESS OR
IMPLIED INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM DAMAGES OR OTHER
LIABILITY WHETHER IN AN ACTION OF CONTRACT TORT OR OTHERWISE ARISING FROM
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
/* cJSON */
/* JSON parser in C. */
#include “cJSON.h“
#include “math.h“
#include
#include
#include
static const char *ep;
const char *cJSON_GetErrorPtr(void) {return ep;}
static int cJSON_strcasecmp(const char *s1const char *s2)
{
if (!s1) return (s1==s2)?0:1;if (!s2) return 1;
for(; tolower(*s1) == tolower(*s2); ++s1 ++s2) if(*s1 == 0) return 0;
return tolower(*(const unsigned char *)s1) - tolower(*(const unsigned char *)s2);
}
static void *(*cJSON_malloc)(size_t sz) = malloc;
static void (*cJSON_free)(void *ptr) = free;
static char* cJSON_strdup(const char* str)
{
size_t len;
char* copy;
len = strlen(str) + 1;
if (!(copy = (char*)cJSON_malloc(len))) return 0;
memcpy(copystrlen);
return copy;
}
void cJSON_InitHooks(cJSON_Hooks* hooks)
{
if (!hooks) { /* Reset hooks */
cJSON_malloc = malloc;
cJSON_free = free;
return;
}
cJSON_malloc = (hooks->malloc_fn)?hooks->malloc_fn:malloc;
cJSON_free = (hooks->free_fn)?hooks->free_fn:free;
}
/* Internal constructor. */
static cJSON *cJSON_New_Item(void)
{
cJSON* node = (cJSON*)cJSON_malloc(sizeof(cJSON));
if (node) memset(node0sizeof(cJSON));
return node;
}
/* Delete a cJSON structure. */
void cJSON_Delete(cJSON *c)
{
cJSON *next;
while (c)
{
next=c->next;
if (!(c->type&cJSON_IsReference) && c->child) cJSON_Delete(c->child);
if (!(c->type&cJSON_IsReference) && c->valuestring) cJSON_free(c->valuestring);
if (c->string) cJSON_free(c->string);
cJSON_free(c);
c=next;
}
}
/* Parse the input text to generate a number and populate the result into item. */
static const char *parse_number(cJSON *itemconst char *num)
{
double n=0sign=1scale=0;int subscale=0signsubscale=1;
if (*num==‘-‘) sign=-1num++; /* Has sign? */
if (*num==‘0‘) num++; /* is zero */
if (*num>=‘1‘ && *num<=‘9‘) do n=(n*10.0)+(*num++ -‘0‘); while (*num>=‘0‘ && *num<=‘9‘); /* N
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 23390 2018-07-27 08:52 CJson\cJSON.c
文件 6941 2014-08-26 21:53 CJson\cJSON.h
文件 1359 2018-11-19 09:53 CJson\JsonEncode.c
目录 0 2018-11-19 09:55 CJson
----------- --------- ---------- ----- ----
31690 4
相关资源
- 51单片机c语言电子钟(已加入调时、
- 如何将字符转换成ASCII
- 基于AT89C52单片机的语音录放系统的
- c语言奔跑的火柴人游戏源码
- C语言实现PID控制直流电机调速含pro
- C++实现http客户端连接服务端及客户端
- 基于C语言的 跨平台 zip unzip
- 蜂群算法C语言实现
- c语言实现iir滤波器
- 学生成绩管理系统含二叉树内容
- C语言实现的SM2数字签名验证
- 系统循环码C语言实现
- 利用TCP协议实现文件传输C语言
- TDMA算法 C语言编写
- linux C语言 socket通信聊天小程序
- MAX485两个单片机半双工通信
- c51单片机24C01-24C16读写程序含PROTEUS仿
- 一个基于DSP的软件无线电的c语言设计
- C语言龙贝格求积算法
- pic18系列单片机C语言程序例程
- c语言宿舍管理查询软件源代码数据结
- C语言实现 多线程文件传输
- 人工智能之动物识别C语言
- 串口接受和发送数据--C语言代码,非
- C语言课程设计记事本
- 操作系统C语言实现银行家算法,键盘
- 《数据结构》C语言版 实验报告 基础
- 飞行弹道计算C语言
- 多目标粒子群算法C代码
- c语言实现 通过rs232可实现上位机和下
评论
共有 条评论