资源简介
JSON-C implements a reference counting object model that allows you to easily construct JSON objects in C, output them as JSON formatted strings and parse JSON formatted strings back into the C representation of JSON objects.
代码片段和文件信息
/*
* $Id: arraylist.cv 1.4 2006/01/26 02:16:28 mclark Exp $
*
* Copyright (c) 2004 2005 metaparadigm Pte. Ltd.
* Michael Clark taparadigm.com>
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the MIT license. See COPYING for details.
*
*/
#include “config.h“
#ifdef STDC_HEADERS
# include
# include
#endif /* STDC_HEADERS */
#if defined(HAVE_STRINGS_H) && !defined(_STRING_H) && !defined(__USE_BSD)
# include
#endif /* HAVE_STRINGS_H */
#include “arraylist.h“
struct array_list*
array_list_new(array_list_free_fn *free_fn)
{
struct array_list *arr;
arr = (struct array_list*)calloc(1 sizeof(struct array_list));
if(!arr) return NULL;
arr->size = ARRAY_LIST_DEFAULT_SIZE;
arr->len
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2015-03-04 03:41 json-c-master\
文件 732 2015-03-04 03:41 json-c-master\.gitignore
文件 165 2015-03-04 03:41 json-c-master\AUTHORS
文件 1089 2015-03-04 03:41 json-c-master\Android.configure.mk
文件 2205 2015-03-04 03:41 json-c-master\COPYING
文件 9811 2015-03-04 03:41 json-c-master\ChangeLog
文件 47275 2015-03-04 03:41 json-c-master\Doxyfile
文件 1777 2015-03-04 03:41 json-c-master\Makefile.am
文件 146 2015-03-04 03:41 json-c-master\Makefile.am.inc
文件 0 2015-03-04 03:41 json-c-master\NEWS
文件 0 2015-03-04 03:41 json-c-master\README
文件 2389 2015-03-04 03:41 json-c-master\README-WIN32.html
文件 1664 2015-03-04 03:41 json-c-master\README.html
文件 1189 2015-03-04 03:41 json-c-master\README.md
文件 3053 2015-03-04 03:41 json-c-master\RELEASE_CHECKLIST.txt
文件 2487 2015-03-04 03:41 json-c-master\arraylist.c
文件 1214 2015-03-04 03:41 json-c-master\arraylist.h
文件 276 2015-03-04 03:41 json-c-master\autogen.sh
文件 699 2015-03-04 03:41 json-c-master\bits.h
文件 4645 2015-03-04 03:41 json-c-master\config.h.in
文件 5073 2015-03-04 03:41 json-c-master\config.h.win32
文件 3253 2015-03-04 03:41 json-c-master\configure.ac
文件 1448 2015-03-04 03:41 json-c-master\debug.c
文件 1629 2015-03-04 03:41 json-c-master\debug.h
文件 218 2015-03-04 03:41 json-c-master\json-c-uninstalled.pc.in
文件 223 2015-03-04 03:41 json-c-master\json-c.pc.in
文件 4172 2015-03-04 03:41 json-c-master\json-c.vcproj
文件 4916 2015-03-04 03:41 json-c-master\json-c.vcxproj
文件 2694 2015-03-04 03:41 json-c-master\json-c.vcxproj.filters
文件 681 2015-03-04 03:41 json-c-master\json.h
文件 364 2015-03-04 03:41 json-c-master\json_c_version.c
............此处省略68个文件信息
评论
共有 条评论