mirror of
https://github.com/DaveGamble/cJSON.git
synced 2023-08-10 21:13:26 +03:00
reformatting: cJSON_AddItemReferenceToArray
This commit is contained in:
parent
b55120eeb2
commit
55e33d7100
6
cJSON.c
6
cJSON.c
@ -1699,7 +1699,11 @@ void cJSON_AddItemToObjectCS(cJSON *object, const char *string, cJSON *item)
|
|||||||
cJSON_AddItemToArray(object, item);
|
cJSON_AddItemToArray(object, item);
|
||||||
}
|
}
|
||||||
|
|
||||||
void cJSON_AddItemReferenceToArray(cJSON *array, cJSON *item) {cJSON_AddItemToArray(array,create_reference(item));}
|
void cJSON_AddItemReferenceToArray(cJSON *array, cJSON *item)
|
||||||
|
{
|
||||||
|
cJSON_AddItemToArray(array, create_reference(item));
|
||||||
|
}
|
||||||
|
|
||||||
void cJSON_AddItemReferenceToObject(cJSON *object,const char *string,cJSON *item) {cJSON_AddItemToObject(object,string,create_reference(item));}
|
void cJSON_AddItemReferenceToObject(cJSON *object,const char *string,cJSON *item) {cJSON_AddItemToObject(object,string,create_reference(item));}
|
||||||
|
|
||||||
cJSON *cJSON_DetachItemFromArray(cJSON *array,int which) {cJSON *c=array->child;while (c && which>0) c=c->next,which--;if (!c) return 0;
|
cJSON *cJSON_DetachItemFromArray(cJSON *array,int which) {cJSON *c=array->child;while (c && which>0) c=c->next,which--;if (!c) return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user