码迷,mamicode.com
首页 > Web开发 > 详细

哇哦!cJson很小巧很厉害哦!

时间:2015-03-12 20:43:15      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:

哇哦!cJson很小巧很厉害哦!

/* Parser core - when encountering text, process appropriately. */
static const char *parse_value(cJSON *item,const char *value)
{
    if (!value)                        return 0;    /* Fail on null. */
    if (!strncmp(value,"null",4))    { item->type=cJSON_NULL;  return value+4; }
    if (!strncmp(value,"false",5))    { item->type=cJSON_False; return value+5; }
    if (!strncmp(value,"true",4))    { item->type=cJSON_True; item->valueint=1;    return value+4; }
    if (*value==\")                { return parse_string(item,value); }
    if (*value==- || (*value>=0 && *value<=9))    { return parse_number(item,value); }
    if (*value==[)                { return parse_array(item,value); }
    if (*value=={)                { return parse_object(item,value); }

    ep=value;return 0;    /* failure. */
}

 

哇哦!cJson很小巧很厉害哦!

标签:

原文地址:http://www.cnblogs.com/foonsun/p/4333324.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!