From 5c4a11b036801a87ece9d2fcf5c54cb0ef94e419 Mon Sep 17 00:00:00 2001 From: Krzysztof Gabis Date: Sat, 23 Apr 2016 12:11:25 +0200 Subject: [PATCH] Removes trailing whitespace. --- parson.c | 36 +++++++++++----------- parson.h | 56 +++++++++++++++++----------------- tests.c | 92 ++++++++++++++++++++++++++++---------------------------- 3 files changed, 92 insertions(+), 92 deletions(-) diff --git a/parson.c b/parson.c index 94c1e6c..7d62549 100644 --- a/parson.c +++ b/parson.c @@ -163,7 +163,7 @@ static int num_bytes_in_utf8_sequence(unsigned char c) { static int verify_utf8_sequence(const unsigned char *string, int *len) { unsigned int cp = 0; *len = num_bytes_in_utf8_sequence(string[0]); - + if (*len == 1) { cp = string[0]; } else if (*len == 2 && IS_CONT(string[1])) { @@ -181,24 +181,24 @@ static int verify_utf8_sequence(const unsigned char *string, int *len) { } else { return 0; } - + /* overlong encodings */ if ((cp < 0x80 && *len > 1) || (cp < 0x800 && *len > 2) || (cp < 0x10000 && *len > 3)) { return 0; } - + /* invalid unicode */ if (cp > 0x10FFFF) { return 0; } - + /* surrogate halves */ if (cp >= 0xD800 && cp <= 0xDFFF) { return 0; } - + return 1; } @@ -243,7 +243,7 @@ static char * read_file(const char * filename) { file_contents = (char*)parson_malloc(sizeof(char) * (file_size + 1)); if (!file_contents) { fclose(fp); - return NULL; + return NULL; } if (fread(file_contents, file_size, 1, fp) < 1) { if (ferror(fp)) { @@ -333,17 +333,17 @@ static JSON_Status json_object_resize(JSON_Object *object, size_t new_capacity) new_capacity == 0) { return JSONFailure; /* Shouldn't happen */ } - + temp_names = (char**)parson_malloc(new_capacity * sizeof(char*)); if (temp_names == NULL) return JSONFailure; - + temp_values = (JSON_Value**)parson_malloc(new_capacity * sizeof(JSON_Value*)); if (temp_values == NULL) { parson_free(temp_names); return JSONFailure; } - + if (object->names != NULL && object->values != NULL && object->count > 0) { memcpy(temp_names, object->names, object->count * sizeof(char*)); memcpy(temp_values, object->values, object->count * sizeof(JSON_Value*)); @@ -713,14 +713,14 @@ static JSON_Value * parse_null_value(const char **string) { } /* Serialization */ -#define APPEND_STRING(str) do { written = append_string(buf, (str)); \ - if (written < 0) { return -1; } \ - if (buf != NULL) { buf += written; } \ +#define APPEND_STRING(str) do { written = append_string(buf, (str));\ + if (written < 0) { return -1; }\ + if (buf != NULL) { buf += written; }\ written_total += written; } while(0) -#define APPEND_INDENT(level) do { written = append_indent(buf, (level)); \ - if (written < 0) { return -1; } \ - if (buf != NULL) { buf += written; } \ +#define APPEND_INDENT(level) do { written = append_indent(buf, (level));\ + if (written < 0) { return -1; }\ + if (buf != NULL) { buf += written; }\ written_total += written; } while(0) static int json_serialize_to_buffer_r(const JSON_Value *value, char *buf, int level, int is_pretty, char *num_buf) @@ -732,7 +732,7 @@ static int json_serialize_to_buffer_r(const JSON_Value *value, char *buf, int le size_t i = 0, count = 0; double num = 0.0; int written = -1, written_total = 0; - + switch (json_value_get_type(value)) { case JSONArray: array = json_value_get_array(value); @@ -1144,7 +1144,7 @@ JSON_Value * json_value_deep_copy(const JSON_Value *value) { char *temp_string_copy = NULL; JSON_Array *temp_array = NULL, *temp_array_copy = NULL; JSON_Object *temp_object = NULL, *temp_object_copy = NULL; - + switch (json_value_get_type(value)) { case JSONArray: temp_array = json_value_get_array(value); @@ -1614,7 +1614,7 @@ JSON_Status json_object_clear(JSON_Object *object) { if (object == NULL) { return JSONFailure; } - for (i = 0; i < json_object_get_count(object); i++) { + for (i = 0; i < json_object_get_count(object); i++) { parson_free(object->names[i]); json_value_free(object->values[i]); } diff --git a/parson.h b/parson.h index ef378fe..fde9738 100644 --- a/parson.h +++ b/parson.h @@ -1,17 +1,17 @@ /* Parson ( http://kgabis.github.com/parson/ ) Copyright (c) 2012 - 2016 Krzysztof Gabis - + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE @@ -27,10 +27,10 @@ #ifdef __cplusplus extern "C" { -#endif - -#include /* size_t */ - +#endif + +#include /* size_t */ + /* Types and enums */ typedef struct json_object_t JSON_Object; typedef struct json_array_t JSON_Array; @@ -46,34 +46,34 @@ enum json_value_type { JSONBoolean = 6 }; typedef int JSON_Value_Type; - + enum json_result_t { JSONSuccess = 0, JSONFailure = -1 }; typedef int JSON_Status; - + typedef void * (*JSON_Malloc_Function)(size_t); typedef void (*JSON_Free_Function)(void *); /* Call only once, before calling any other function from parson API. If not called, malloc and free from stdlib will be used for all allocations */ void json_set_allocation_functions(JSON_Malloc_Function malloc_fun, JSON_Free_Function free_fun); - + /* Parses first JSON value in a file, returns NULL in case of error */ JSON_Value * json_parse_file(const char *filename); /* Parses first JSON value in a file and ignores comments (/ * * / and //), returns NULL in case of error */ JSON_Value * json_parse_file_with_comments(const char *filename); - + /* Parses first JSON value in a string, returns NULL in case of error */ JSON_Value * json_parse_string(const char *string); /* Parses first JSON value in a string and ignores comments (/ * * / and //), returns NULL in case of error */ JSON_Value * json_parse_string_with_comments(const char *string); - + /* Serialization */ size_t json_serialization_size(const JSON_Value *value); /* returns 0 on fail */ JSON_Status json_serialize_to_buffer(const JSON_Value *value, char *buf, size_t buf_size_in_bytes); @@ -90,11 +90,11 @@ void json_free_serialized_string(char *string); /* frees string from json /* Comparing */ int json_value_equals(const JSON_Value *a, const JSON_Value *b); - + /* Validation - This is *NOT* JSON Schema. It validates json by checking if object have identically + This is *NOT* JSON Schema. It validates json by checking if object have identically named fields with matching types. - For example schema {"name":"", "age":0} will validate + For example schema {"name":"", "age":0} will validate {"name":"Joe", "age":25} and {"name":"Joe", "age":25, "gender":"m"}, but not {"name":"Joe"} or {"name":"Joe", "age":"Cucumber"}. In case of arrays, only first value in schema is checked against all values in tested array. @@ -102,9 +102,9 @@ int json_value_equals(const JSON_Value *a, const JSON_Value *b); null validates values of every type. */ JSON_Status json_validate(const JSON_Value *schema, const JSON_Value *value); - + /* - * JSON Object + * JSON Objec */ JSON_Value * json_object_get_value (const JSON_Object *object, const char *name); const char * json_object_get_string (const JSON_Object *object, const char *name); @@ -125,11 +125,11 @@ double json_object_dotget_number (const JSON_Object *object, const char * int json_object_dotget_boolean(const JSON_Object *object, const char *name); /* returns -1 on fail */ /* Functions to get available names */ -size_t json_object_get_count(const JSON_Object *object); -const char * json_object_get_name (const JSON_Object *object, size_t index); +size_t json_object_get_count (const JSON_Object *object); +const char * json_object_get_name (const JSON_Object *object, size_t index); JSON_Value * json_object_get_value_at(const JSON_Object *object, size_t index); - -/* Creates new name-value pair or frees and replaces old value with a new one. + +/* Creates new name-value pair or frees and replaces old value with a new one. * json_object_set_value does not copy passed value so it shouldn't be freed afterwards. */ JSON_Status json_object_set_value(JSON_Object *object, const char *name, JSON_Value *value); JSON_Status json_object_set_string(JSON_Object *object, const char *name, const char *string); @@ -153,9 +153,9 @@ JSON_Status json_object_dotremove(JSON_Object *object, const char *key); /* Removes all name-value pairs in object */ JSON_Status json_object_clear(JSON_Object *object); - -/* - *JSON Array + +/* + *JSON Array */ JSON_Value * json_array_get_value (const JSON_Array *array, size_t index); const char * json_array_get_string (const JSON_Array *array, size_t index); @@ -164,13 +164,13 @@ JSON_Array * json_array_get_array (const JSON_Array *array, size_t index); double json_array_get_number (const JSON_Array *array, size_t index); /* returns 0 on fail */ int json_array_get_boolean(const JSON_Array *array, size_t index); /* returns -1 on fail */ size_t json_array_get_count (const JSON_Array *array); - + /* Frees and removes value at given index, does nothing and returns JSONFailure if index doesn't exist. * Order of values in array may change during execution. */ JSON_Status json_array_remove(JSON_Array *array, size_t i); /* Frees and removes from array value at given index and replaces it with given one. - * Does nothing and returns JSONFailure if index doesn't exist. + * Does nothing and returns JSONFailure if index doesn't exist. * json_array_replace_value does not copy passed value so it shouldn't be freed afterwards. */ JSON_Status json_array_replace_value(JSON_Array *array, size_t i, JSON_Value *value); JSON_Status json_array_replace_string(JSON_Array *array, size_t i, const char* string); @@ -188,7 +188,7 @@ JSON_Status json_array_append_string(JSON_Array *array, const char *string); JSON_Status json_array_append_number(JSON_Array *array, double number); JSON_Status json_array_append_boolean(JSON_Array *array, int boolean); JSON_Status json_array_append_null(JSON_Array *array); - + /* *JSON Value */ @@ -215,7 +215,7 @@ JSON_Array * json_array (const JSON_Value *value); const char * json_string (const JSON_Value *value); double json_number (const JSON_Value *value); int json_boolean(const JSON_Value *value); - + #ifdef __cplusplus } #endif diff --git a/tests.c b/tests.c index 4cd5e2e..2b4c4d8 100644 --- a/tests.c +++ b/tests.c @@ -1,17 +1,17 @@ /* Parson ( http://kgabis.github.com/parson/ ) Copyright (c) 2012 - 2016 Krzysztof Gabis - + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE @@ -31,8 +31,8 @@ #include #include -#define TEST(A) printf("%-72s-",#A); \ - if(A){puts(" OK");tests_passed++;} \ +#define TEST(A) printf("%-72s-",#A);\ + if(A){puts(" OK");tests_passed++;}\ else{puts(" FAIL");tests_failed++;} #define STREQ(A, B) ((A) && (B) ? strcmp((A), (B)) == 0 : 0) #define EPSILON 0.000001 @@ -63,7 +63,7 @@ int main() { /* print_commits_info("torvalds", "linux"); */ /* serialization_example(); */ /* persistence_example(); */ - + test_suite_1(); test_suite_2_no_comments(); test_suite_2_with_comments(); @@ -85,27 +85,27 @@ void test_suite_1(void) { TEST(json_value_equals(json_parse_string(json_serialize_to_string(val)), val)); TEST(json_value_equals(json_parse_string(json_serialize_to_string_pretty(val)), val)); if (val) { json_value_free(val); } - + TEST((val = json_parse_file("tests/test_1_2.txt")) != NULL); TEST(json_value_equals(json_parse_string(json_serialize_to_string(val)), val)); TEST(json_value_equals(json_parse_string(json_serialize_to_string_pretty(val)), val)); if (val) { json_value_free(val); } - + TEST((val = json_parse_file("tests/test_1_3.txt")) != NULL); TEST(json_value_equals(json_parse_string(json_serialize_to_string(val)), val)); TEST(json_value_equals(json_parse_string(json_serialize_to_string_pretty(val)), val)); if (val) { json_value_free(val); } - + TEST((val = json_parse_file_with_comments("tests/test_1_1.txt")) != NULL); TEST(json_value_equals(json_parse_string(json_serialize_to_string(val)), val)); TEST(json_value_equals(json_parse_string(json_serialize_to_string_pretty(val)), val)); if (val) { json_value_free(val); } - + TEST((val = json_parse_file_with_comments("tests/test_1_2.txt")) != NULL); TEST(json_value_equals(json_parse_string(json_serialize_to_string(val)), val)); TEST(json_value_equals(json_parse_string(json_serialize_to_string_pretty(val)), val)); if (val) { json_value_free(val); } - + TEST((val = json_parse_file_with_comments("tests/test_1_3.txt")) != NULL); TEST(json_value_equals(json_parse_string(json_serialize_to_string(val)), val)); TEST(json_value_equals(json_parse_string(json_serialize_to_string_pretty(val)), val)); @@ -129,7 +129,7 @@ void test_suite_2(JSON_Value *root_value) { TEST(json_object_get_boolean(root_object, "boolean true") == 1); TEST(json_object_get_boolean(root_object, "boolean false") == 0); TEST(json_value_get_type(json_object_get_value(root_object, "null")) == JSONNull); - + array = json_object_get_array(root_object, "string array"); if (array != NULL && json_array_get_count(array) > 1) { TEST(STREQ(json_array_get_string(array, 0), "lorem")); @@ -137,7 +137,7 @@ void test_suite_2(JSON_Value *root_value) { } else { tests_failed++; } - + array = json_object_get_array(root_object, "x^2 array"); if (array != NULL) { for (i = 0; i < json_array_get_count(array); i++) { @@ -146,19 +146,19 @@ void test_suite_2(JSON_Value *root_value) { } else { tests_failed++; } - + TEST(json_object_get_array(root_object, "non existent array") == NULL); TEST(STREQ(json_object_dotget_string(root_object, "object.nested string"), "str")); TEST(json_object_dotget_boolean(root_object, "object.nested true") == 1); TEST(json_object_dotget_boolean(root_object, "object.nested false") == 0); TEST(json_object_dotget_value(root_object, "object.nested null") != NULL); TEST(json_object_dotget_number(root_object, "object.nested number") == 123); - + TEST(json_object_dotget_value(root_object, "should.be.null") == NULL); TEST(json_object_dotget_value(root_object, "should.be.null.") == NULL); TEST(json_object_dotget_value(root_object, ".") == NULL); TEST(json_object_dotget_value(root_object, "") == NULL); - + array = json_object_dotget_array(root_object, "object.nested array"); TEST(array != NULL); TEST(json_array_get_count(array) > 1); @@ -167,12 +167,12 @@ void test_suite_2(JSON_Value *root_value) { TEST(STREQ(json_array_get_string(array, 1), "ipsum")); } TEST(json_object_dotget_boolean(root_object, "nested true")); - + TEST(STREQ(json_object_get_string(root_object, "/**/"), "comment")); TEST(STREQ(json_object_get_string(root_object, "//"), "comment")); TEST(STREQ(json_object_get_string(root_object, "url"), "https://www.example.com/search?q=12345")); TEST(STREQ(json_object_get_string(root_object, "escaped chars"), "\" \\ /")); - + TEST(json_object_get_object(root_object, "empty object") != NULL); TEST(json_object_get_array(root_object, "empty array") != NULL); @@ -200,7 +200,7 @@ void test_suite_2_with_comments(void) { void test_suite_3(void) { char nested_20x[] = "[[[[[[[[[[[[[[[[[[[[\"hi\"]]]]]]]]]]]]]]]]]]]]"; - + puts("Testing valid strings:"); TEST(json_parse_string("{\"lorem\":\"ipsum\"}") != NULL); TEST(json_parse_string("[\"lorem\"]") != NULL); @@ -209,7 +209,7 @@ void test_suite_3(void) { TEST(json_parse_string("false") != NULL); TEST(json_parse_string("\"string\"") != NULL); TEST(json_parse_string("123") != NULL); - + puts("Testing invalid strings:"); TEST(json_parse_string(NULL) == NULL); TEST(json_parse_string("") == NULL); /* empty string */ @@ -267,29 +267,29 @@ void test_suite_4() { void test_suite_5(void) { JSON_Value *val_from_file = json_parse_file("tests/test_5.txt"); - + JSON_Value *val = NULL; JSON_Object *obj = NULL; JSON_Array *interests_arr = NULL; - + val = json_value_init_object(); TEST(val != NULL); - + obj = json_value_get_object(val); TEST(obj != NULL); - + TEST(json_object_set_string(obj, "first", "John") == JSONSuccess); TEST(json_object_set_string(obj, "last", "Doe") == JSONSuccess); TEST(json_object_set_number(obj, "age", 25) == JSONSuccess); TEST(json_object_set_boolean(obj, "registered", 1) == JSONSuccess); - + TEST(json_object_set_value(obj, "interests", json_value_init_array()) == JSONSuccess); interests_arr = json_object_get_array(obj, "interests"); TEST(interests_arr != NULL); TEST(json_array_append_string(interests_arr, "Writing") == JSONSuccess); TEST(json_array_append_string(interests_arr, "Mountain Biking") == JSONSuccess); TEST(json_array_replace_string(interests_arr, 0, "Reading") == JSONSuccess); - + TEST(json_object_dotset_string(obj, "favorites.color", "blue") == JSONSuccess); TEST(json_object_dotset_string(obj, "favorites.sport", "running") == JSONSuccess); TEST(json_object_dotset_string(obj, "favorites.fruit", "apple") == JSONSuccess); @@ -299,55 +299,55 @@ void test_suite_5(void) { TEST(json_object_set_string(obj, "surrogate string", "lorem𝄞ipsum𝍧lorem") == JSONSuccess); TEST(json_object_set_string(obj, "windows path", "C:\\Windows\\Path") == JSONSuccess); TEST(json_value_equals(val_from_file, val)); - + TEST(json_object_set_string(obj, NULL, "") == JSONFailure); TEST(json_object_set_string(obj, "last", NULL) == JSONFailure); TEST(json_object_set_string(obj, NULL, NULL) == JSONFailure); TEST(json_object_set_value(obj, NULL, NULL) == JSONFailure); - + TEST(json_object_dotset_string(obj, NULL, "") == JSONFailure); TEST(json_object_dotset_string(obj, "favorites.color", NULL) == JSONFailure); TEST(json_object_dotset_string(obj, NULL, NULL) == JSONFailure); TEST(json_object_dotset_value(obj, NULL, NULL) == JSONFailure); - + TEST(json_array_append_string(NULL, "lorem") == JSONFailure); TEST(json_array_append_value(interests_arr, NULL) == JSONFailure); TEST(json_array_append_value(NULL, NULL) == JSONFailure); - + TEST(json_array_remove(NULL, 0) == JSONFailure); TEST(json_array_replace_value(interests_arr, 0, NULL) == JSONFailure); TEST(json_array_replace_string(NULL, 0, "lorem") == JSONFailure); TEST(json_array_replace_string(interests_arr, 100, "not existing") == JSONFailure); - + TEST(json_array_append_string(json_object_get_array(obj, "interests"), NULL) == JSONFailure); - + TEST(json_array_append_string(interests_arr, "Writing") == JSONSuccess); TEST(json_array_remove(interests_arr, 0) == JSONSuccess); TEST(json_array_remove(interests_arr, 1) == JSONSuccess); TEST(json_array_remove(interests_arr, 0) == JSONSuccess); TEST(json_array_remove(interests_arr, 0) == JSONFailure); /* should be empty by now */ - + TEST(json_object_remove(obj, "interests") == JSONSuccess); /* UTF-8 tests */ TEST(json_object_set_string(obj, "correct string", "κόσμε") == JSONSuccess); - + TEST(json_object_set_string(obj, "boundary 1", "\xed\x9f\xbf") == JSONSuccess); TEST(json_object_set_string(obj, "boundary 2", "\xee\x80\x80") == JSONSuccess); TEST(json_object_set_string(obj, "boundary 3", "\xef\xbf\xbd") == JSONSuccess); TEST(json_object_set_string(obj, "boundary 4", "\xf4\x8f\xbf\xbf") == JSONSuccess); - + TEST(json_object_set_string(obj, "first continuation byte", "\x80") == JSONFailure); TEST(json_object_set_string(obj, "last continuation byte", "\xbf") == JSONFailure); - + TEST(json_object_set_string(obj, "impossible sequence 1", "\xfe") == JSONFailure); TEST(json_object_set_string(obj, "impossible sequence 2", "\xff") == JSONFailure); TEST(json_object_set_string(obj, "impossible sequence 3", "\xfe\xfe\xff\xff") == JSONFailure); - + TEST(json_object_set_string(obj, "overlong 1", "\xc0\xaf") == JSONFailure); TEST(json_object_set_string(obj, "overlong 2", "\xc1\xbf") == JSONFailure); TEST(json_object_set_string(obj, "overlong 3", "\xe0\x80\xaf") == JSONFailure); - TEST(json_object_set_string(obj, "overlong 4", "\xe0\x9f\xbf") == JSONFailure); + TEST(json_object_set_string(obj, "overlong 4", "\xe0\x9f\xbf") == JSONFailure); TEST(json_object_set_string(obj, "overlong 5", "\xf0\x80\x80\xaf") == JSONFailure); TEST(json_object_set_string(obj, "overlong 6", "\xf0\x8f\xbf\xbf") == JSONFailure); TEST(json_object_set_string(obj, "overlong 7", "\xf0\x8f\xbf\xbf") == JSONFailure); @@ -357,7 +357,7 @@ void test_suite_5(void) { TEST(json_object_set_string(obj, "overlong null 3", "\xf0\x80\x80\x80") == JSONFailure); TEST(json_object_set_string(obj, "overlong null 4", "\xf8\x80\x80\x80\x80") == JSONFailure); TEST(json_object_set_string(obj, "overlong null 5", "\xfc\x80\x80\x80\x80\x80") == JSONFailure); - + TEST(json_object_set_string(obj, "single surrogate 1", "\xed\xa0\x80") == JSONFailure); TEST(json_object_set_string(obj, "single surrogate 2", "\xed\xaf\xbf") == JSONFailure); TEST(json_object_set_string(obj, "single surrogate 3", "\xed\xbf\xbf") == JSONFailure); @@ -424,7 +424,7 @@ void test_suite_9(void) { serialization_size = json_serialization_size_pretty(a); serialized = json_serialize_to_string_pretty(a); TEST((strlen(serialized)+1) == serialization_size); - + file_contents = read_file(filename); TEST(STREQ(file_contents, serialized)); } @@ -434,25 +434,25 @@ void print_commits_info(const char *username, const char *repo) { JSON_Array *commits; JSON_Object *commit; size_t i; - + char curl_command[512]; char cleanup_command[256]; char output_filename[] = "commits.json"; - + /* it ain't pretty, but it's not a libcurl tutorial */ - sprintf(curl_command, + sprintf(curl_command, "curl -s \"https://api.github.com/repos/%s/%s/commits\" > %s", username, repo, output_filename); sprintf(cleanup_command, "rm -f %s", output_filename); system(curl_command); - + /* parsing json and validating output */ root_value = json_parse_file(output_filename); if (json_value_get_type(root_value) != JSONArray) { system(cleanup_command); return; } - + /* getting array from root value and printing commit info */ commits = json_value_get_array(root_value); printf("%-10.10s %-10.10s %s\n", "Date", "SHA", "Author"); @@ -463,7 +463,7 @@ void print_commits_info(const char *username, const char *repo) { json_object_get_string(commit, "sha"), json_object_dotget_string(commit, "commit.author.name")); } - + /* cleanup code */ json_value_free(root_value); system(cleanup_command);