mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-13 02:34:48 +08:00
style
This commit is contained in:
parent
855aee04dd
commit
bd38d68bd4
1 changed files with 3 additions and 3 deletions
|
@ -861,19 +861,19 @@ double json_number_value(const json_t *json) {
|
||||||
/*** simple values ***/
|
/*** simple values ***/
|
||||||
|
|
||||||
json_t *json_true(void) {
|
json_t *json_true(void) {
|
||||||
static json_t the_true = {JSON_TRUE, (size_t) -1};
|
static json_t the_true = {JSON_TRUE, (size_t) - 1};
|
||||||
return &the_true;
|
return &the_true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
json_t *json_false(void) {
|
json_t *json_false(void) {
|
||||||
static json_t the_false = {JSON_FALSE, (size_t) -1};
|
static json_t the_false = {JSON_FALSE, (size_t) - 1};
|
||||||
return &the_false;
|
return &the_false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
json_t *json_null(void) {
|
json_t *json_null(void) {
|
||||||
static json_t the_null = {JSON_NULL, (size_t) -1};
|
static json_t the_null = {JSON_NULL, (size_t) - 1};
|
||||||
return &the_null;
|
return &the_null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue