summaryrefslogtreecommitdiff
path: root/apps/examples/json
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-04-13 16:24:28 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-04-13 16:24:28 -0600
commit43ec94a665e13552402ff4f102e0f65f6792cf29 (patch)
tree05da26d1bb5e364c1a388afd54630d5ae3ca4aa7 /apps/examples/json
parent70b6bb22af51defd713adfd452309f32f0e523aa (diff)
downloadnuttx-43ec94a665e13552402ff4f102e0f65f6792cf29.tar.gz
nuttx-43ec94a665e13552402ff4f102e0f65f6792cf29.tar.bz2
nuttx-43ec94a665e13552402ff4f102e0f65f6792cf29.zip
More trailing whilespace removal
Diffstat (limited to 'apps/examples/json')
-rw-r--r--apps/examples/json/Makefile2
-rw-r--r--apps/examples/json/README18
-rw-r--r--apps/examples/json/json_main.c12
3 files changed, 16 insertions, 16 deletions
diff --git a/apps/examples/json/Makefile b/apps/examples/json/Makefile
index f6a38fb1a..96144f9ad 100644
--- a/apps/examples/json/Makefile
+++ b/apps/examples/json/Makefile
@@ -66,7 +66,7 @@ ROOTDEPPATH = --dep-path .
# Common build
-VPATH =
+VPATH =
all: .built
.PHONY: clean depend distclean
diff --git a/apps/examples/json/README b/apps/examples/json/README
index de9a0b2ed..45682e02f 100644
--- a/apps/examples/json/README
+++ b/apps/examples/json/README
@@ -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.
diff --git a/apps/examples/json/json_main.c b/apps/examples/json/json_main.c
index 443be387b..26e6b2855 100644
--- a/apps/examples/json/json_main.c
+++ b/apps/examples/json/json_main.c
@@ -130,7 +130,7 @@ static void create_objects(void)
int i;
/* Our "days of the week" array */
-
+
static const char *strings[7] =
{
"Sunday", "Monday", "Tuesday", "Wednesday",
@@ -138,7 +138,7 @@ static void create_objects(void)
};
/* Our matrix: */
-
+
static const int numbers[3][3] = { {0, -1, 0}, {1, 0, 0}, {0, 0, 1} };
/* Our "gallery" item: */
@@ -229,10 +229,10 @@ static void create_objects(void)
* Public Functions
****************************************************************************/
/****************************************************************************
- * Name:
+ * Name:
*
* Description:
- *
+ *
*
****************************************************************************/
@@ -252,7 +252,7 @@ int json_main(int argc, const char *argv[])
" }\n"
"}";
- static const char text2[] =
+ static const char text2[] =
"[\"Sunday\", \"Monday\", \"Tuesday\", \"Wednesday\", \"Thursday\", \"Friday\", \"Saturday\"]";
static const char text3[] =
@@ -261,7 +261,7 @@ int json_main(int argc, const char *argv[])
" [1, 0, 0],\n"
" [0, 0, 1]\n"
"]\n";
-
+
static const char text4[] =
"{\n"
" \"Image\": {\n"