Utility for array list handling. */
| 676 | |
| 677 | /* Utility for array list handling. */ |
| 678 | static void suffix_object(cJSON *prev,cJSON *item) {prev->next=item;item->prev=prev;} |
| 679 | /* Utility for handling references. */ |
| 680 | static cJSON *create_reference(cJSON *item) {cJSON *ref=cJSON_New_Item();if (!ref) return 0;memcpy(ref,item,sizeof(cJSON));ref->string=0;ref->type|=cJSON_IsReference;ref->next=ref->prev=0;return ref;} |
| 681 |
no outgoing calls
no test coverage detected