mirror of
https://github.com/DaveGamble/cJSON.git
synced 2024-12-26 21:04:24 +08:00
reformatting: cJSON_DetachItemFromObject
This commit is contained in:
parent
6e5063f9cc
commit
96ec74c9d5
18
cJSON.c
18
cJSON.c
@ -1746,7 +1746,23 @@ void cJSON_DeleteItemFromArray(cJSON *array, int which)
|
||||
cJSON_Delete(cJSON_DetachItemFromArray(array, which));
|
||||
}
|
||||
|
||||
cJSON *cJSON_DetachItemFromObject(cJSON *object,const char *string) {int i=0;cJSON *c=object->child;while (c && cJSON_strcasecmp(c->string,string)) i++,c=c->next;if (c) return cJSON_DetachItemFromArray(object,i);return 0;}
|
||||
cJSON *cJSON_DetachItemFromObject(cJSON *object, const char *string)
|
||||
{
|
||||
int i = 0;
|
||||
cJSON *c = object->child;
|
||||
while (c && cJSON_strcasecmp(c->string,string))
|
||||
{
|
||||
i++;
|
||||
c = c->next;
|
||||
}
|
||||
if (c)
|
||||
{
|
||||
return cJSON_DetachItemFromArray(object, i);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
void cJSON_DeleteItemFromObject(cJSON *object,const char *string) {cJSON_Delete(cJSON_DetachItemFromObject(object,string));}
|
||||
|
||||
/* Replace array/object items with new ones. */
|
||||
|
Loading…
x
Reference in New Issue
Block a user