Browse Source

reformatting: cJSON_HasObjectItem

Max Bruckner 9 năm trước cách đây
mục cha
commit
17e13946fe
1 tập tin đã thay đổi với 4 bổ sung1 xóa
  1. 4 1
      cJSON.c

+ 4 - 1
cJSON.c

@@ -1615,7 +1615,10 @@ cJSON *cJSON_GetObjectItem(cJSON *object, const char *string)
     return c;
 }
 
-int cJSON_HasObjectItem(cJSON *object,const char *string)		{return cJSON_GetObjectItem(object,string)?1:0;}
+int cJSON_HasObjectItem(cJSON *object,const char *string)
+{
+    return cJSON_GetObjectItem(object, string) ? 1 : 0;
+}
 
 /* Utility for array list handling. */
 static void suffix_object(cJSON *prev,cJSON *item) {prev->next=item;item->prev=prev;}