mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-09-15 07:02:15 +00:00
More trailing whilespace removal
This commit is contained in:
parent
7d961b6c93
commit
b9cf7acb1a
285 changed files with 769 additions and 769 deletions
|
|
@ -60,7 +60,7 @@ ROOTDEPPATH = --dep-path .
|
|||
|
||||
# Common build
|
||||
|
||||
VPATH =
|
||||
VPATH =
|
||||
|
||||
all: .built
|
||||
.PHONY: context depend clean distclean
|
||||
|
|
|
|||
|
|
@ -66,12 +66,12 @@ philosophy as JSON itself. Simple, dumb, out of the way.
|
|||
|
||||
Some JSON:
|
||||
{
|
||||
"name": "Jack (\"Bee\") Nimble",
|
||||
"name": "Jack (\"Bee\") Nimble",
|
||||
"format": {
|
||||
"type": "rect",
|
||||
"width": 1920,
|
||||
"height": 1080,
|
||||
"interlace": false,
|
||||
"type": "rect",
|
||||
"width": 1920,
|
||||
"height": 1080,
|
||||
"interlace": false,
|
||||
"frame rate": 24
|
||||
}
|
||||
}
|
||||
|
|
@ -99,7 +99,7 @@ Finished? Delete the root (this takes care of everything else).
|
|||
That's AUTO mode. If you're going to use Auto mode, you really ought to check pointers
|
||||
before you dereference them. If you want to see how you'd build this struct in code?
|
||||
cJSON *root,*fmt;
|
||||
root=cJSON_CreateObject();
|
||||
root=cJSON_CreateObject();
|
||||
cJSON_AddItemToObject(root, "name", cJSON_CreateString("Jack (\"Bee\") Nimble"));
|
||||
cJSON_AddItemToObject(root, "format", fmt=cJSON_CreateObject());
|
||||
cJSON_AddStringToObject(fmt,"type", "rect");
|
||||
|
|
@ -198,7 +198,7 @@ void parse_object(cJSON *item)
|
|||
int i; for (i=0;i<cJSON_GetArraySize(item);i++)
|
||||
{
|
||||
cJSON *subitem=cJSON_GetArrayItem(item,i);
|
||||
// handle subitem.
|
||||
// handle subitem.
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -211,7 +211,7 @@ void parse_object(cJSON *item)
|
|||
{
|
||||
// handle subitem
|
||||
if (subitem->child) parse_object(subitem->child);
|
||||
|
||||
|
||||
subitem=subitem->next;
|
||||
}
|
||||
}
|
||||
|
|
@ -240,7 +240,7 @@ cJSON *Create_array_of_anything(cJSON **items,int num)
|
|||
}
|
||||
return root;
|
||||
}
|
||||
|
||||
|
||||
and simply: Create_array_of_anything(objects,24);
|
||||
|
||||
cJSON doesn't make any assumptions about what order you create things in.
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@
|
|||
/****************************************************************************
|
||||
* Private Data
|
||||
****************************************************************************/
|
||||
|
||||
|
||||
static const char *ep;
|
||||
|
||||
static const unsigned char firstByteMark[7] =
|
||||
|
|
@ -75,7 +75,7 @@ static char *print_object(cJSON *item, int depth, int fmt);
|
|||
/****************************************************************************
|
||||
* Private Functions
|
||||
****************************************************************************/
|
||||
|
||||
|
||||
static char *cJSON_strdup(const char *str)
|
||||
{
|
||||
size_t len;
|
||||
|
|
@ -168,7 +168,7 @@ static const char *parse_number(cJSON *item, const char *num)
|
|||
do
|
||||
{
|
||||
n = (n * 10.0) + (*num++ - '0'), scale--;
|
||||
}
|
||||
}
|
||||
while (*num >= '0' && *num <= '9');
|
||||
}
|
||||
|
||||
|
|
@ -652,7 +652,7 @@ static const char *parse_array(cJSON *item, const char *value)
|
|||
|
||||
/* Skip any spacing, get the value. */
|
||||
|
||||
value = skip(parse_value(child, skip(value)));
|
||||
value = skip(parse_value(child, skip(value)));
|
||||
if (!value)
|
||||
{
|
||||
return 0;
|
||||
|
|
@ -845,7 +845,7 @@ static const char *parse_object(cJSON *item, const char *value)
|
|||
|
||||
/* Skip any spacing, get the value. */
|
||||
|
||||
value = skip(parse_value(child, skip(value + 1)));
|
||||
value = skip(parse_value(child, skip(value + 1)));
|
||||
if (!value)
|
||||
{
|
||||
return 0;
|
||||
|
|
@ -1089,7 +1089,7 @@ static cJSON *create_reference(cJSON *item)
|
|||
/****************************************************************************
|
||||
* Public Functions
|
||||
****************************************************************************/
|
||||
|
||||
|
||||
const char *cJSON_GetErrorPtr(void)
|
||||
{
|
||||
return ep;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue