资源简介
STM32环境中,C语言实现JSON
代码片段和文件信息
/*
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
#include
#include
#include
#include
#include
#include
#include “cJSON.h“
#include “malloc.h“
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) = mymalloc;
static void (*cJSON_free)(void *ptr) = myfree;
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
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2014-11-23 10:14 stm32_cjson\
目录 0 2014-11-23 10:00 stm32_cjson\cJSON\
文件 23200 2014-11-23 10:00 stm32_cjson\cJSON\cJSON.c
文件 6833 2014-11-21 12:29 stm32_cjson\cJSON\cJSON.h
文件 1091 2013-08-14 14:02 stm32_cjson\cJSON\LICENSE
文件 8751 2009-10-28 23:48 stm32_cjson\cJSON\README
文件 6573 2013-02-09 12:56 stm32_cjson\cJSON\test.c
目录 0 2013-08-14 14:21 stm32_cjson\cJSON\tests\
文件 583 2009-08-23 23:46 stm32_cjson\cJSON\tests\test1
文件 242 2009-08-23 23:46 stm32_cjson\cJSON\tests\test2
文件 605 2009-08-23 23:46 stm32_cjson\cJSON\tests\test3
文件 3467 2009-08-23 23:47 stm32_cjson\cJSON\tests\test4
文件 873 2009-08-23 23:47 stm32_cjson\cJSON\tests\test5
目录 0 2012-07-22 11:07 stm32_cjson\CMSIS\
文件 17273 2010-06-07 10:25 stm32_cjson\CMSIS\core_cm3.c
文件 85714 2011-02-09 14:59 stm32_cjson\CMSIS\core_cm3.h
目录 0 2012-07-22 11:07 stm32_cjson\CMSIS\startup\
文件 15766 2011-03-10 10:52 stm32_cjson\CMSIS\startup\startup_stm32f10x_cl.s
文件 15503 2011-03-10 10:52 stm32_cjson\CMSIS\startup\startup_stm32f10x_hd.s
文件 15692 2011-03-10 10:52 stm32_cjson\CMSIS\startup\startup_stm32f10x_hd_vl.s
文件 12376 2011-03-10 10:52 stm32_cjson\CMSIS\startup\startup_stm32f10x_ld.s
文件 13656 2011-03-10 10:52 stm32_cjson\CMSIS\startup\startup_stm32f10x_ld_vl.s
文件 12765 2011-03-10 10:52 stm32_cjson\CMSIS\startup\startup_stm32f10x_md.s
文件 14073 2011-03-10 10:51 stm32_cjson\CMSIS\startup\startup_stm32f10x_md_vl.s
文件 15955 2011-03-10 10:51 stm32_cjson\CMSIS\startup\startup_stm32f10x_xl.s
文件 633941 2011-03-10 10:51 stm32_cjson\CMSIS\stm32f10x.h
文件 36557 2011-03-10 10:51 stm32_cjson\CMSIS\system_stm32f10x.c
文件 2085 2011-03-10 10:51 stm32_cjson\CMSIS\system_stm32f10x.h
目录 0 2012-07-22 11:07 stm32_cjson\FWlib\
目录 0 2012-07-22 11:07 stm32_cjson\FWlib\inc\
文件 8982 2011-03-10 10:47 stm32_cjson\FWlib\inc\misc.h
............此处省略65个文件信息
- 上一篇:物质扩散算法
- 下一篇:C++ primer plus 第六版 全部编程练习答案
相关资源
- C++ primer plus 第六版 全部编程练习答案
- MFC特强大CListCtrlEx支持插入控件、设置
- 算法与数据结构_C语言版_答案(1-8章
- 全国计算机二级c语言历年真题完整版
- C++面试题常见问题
- C++ 用户管理模块
- AES算法的C语言版本
- C++实现HTTP处理类
- 模拟 数据库 C语言 基本功能
- C++2017.txt
- 基于OPENGL的C语言大作业
- C.C++笔试面试必备宝典我就靠它进的公
- 02_C++PrimerPlus_中文版_第6版_超清.txt
- 泛型链表——C语言实现
- C语言实现三种闭包算法传递,自反,
- C++自绘柱状图.rar
- 多元 多进制 NB LDPC BP QSPA译码 decoder
- 自己写的元胞自动机NS模型
- 2048C++版本带图形界面
- CGridListCtrlEx源码vc++
- myshell:操作系统编程-自己用C语言写
- 七参数坐标转换C语言代码
- 使用C++的二叉搜索树实现学生成绩管
- c语言winsock 实现简单域名解析(DNS
- 决策树CART实现
- Horiba MFC数字通信协议
- 狼吃羊C++代码
- 语音识别系统源码
- C#获取周围可见的wifi网络
- c语言项目五子棋对战局域网.rar
评论
共有 条评论