aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/json/json_writer.h
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-09-22 10:42:19 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-09-22 10:42:19 -0700
commit45724b35e411fef7c5da66a74c78428c11d56843 (patch)
tree9264034aca675c89444e02f72ef58e67d7043604 /src/core/json/json_writer.h
parent298751c1195523ef6228595043b583c3a6270e08 (diff)
indent pass to get logical source lines on one physical line
Diffstat (limited to 'src/core/json/json_writer.h')
-rw-r--r--src/core/json/json_writer.h35
1 files changed, 16 insertions, 19 deletions
diff --git a/src/core/json/json_writer.h b/src/core/json/json_writer.h
index a299dfabf8..d7dfe2846f 100644
--- a/src/core/json/json_writer.h
+++ b/src/core/json/json_writer.h
@@ -50,19 +50,21 @@
#include "src/core/json/json_common.h"
-typedef struct grpc_json_writer_vtable {
+typedef struct grpc_json_writer_vtable
+{
/* Adds a character to the output stream. */
- void (*output_char)(void* userdata, char);
+ void (*output_char) (void *userdata, char);
/* Adds a zero-terminated string to the output stream. */
- void (*output_string)(void* userdata, const char* str);
+ void (*output_string) (void *userdata, const char *str);
/* Adds a fixed-length string to the output stream. */
- void (*output_string_with_len)(void* userdata, const char* str, size_t len);
+ void (*output_string_with_len) (void *userdata, const char *str, size_t len);
} grpc_json_writer_vtable;
-typedef struct grpc_json_writer {
- void* userdata;
- grpc_json_writer_vtable* vtable;
+typedef struct grpc_json_writer
+{
+ void *userdata;
+ grpc_json_writer_vtable *vtable;
int indent;
int depth;
int container_empty;
@@ -74,24 +76,19 @@ typedef struct grpc_json_writer {
* use indent=0, then the output will not have any newlines either, thus
* emitting a condensed json output.
*/
-void grpc_json_writer_init(grpc_json_writer* writer, int indent,
- grpc_json_writer_vtable* vtable, void* userdata);
+void grpc_json_writer_init (grpc_json_writer * writer, int indent, grpc_json_writer_vtable * vtable, void *userdata);
/* Signals the beginning of a container. */
-void grpc_json_writer_container_begins(grpc_json_writer* writer,
- grpc_json_type type);
+void grpc_json_writer_container_begins (grpc_json_writer * writer, grpc_json_type type);
/* Signals the end of a container. */
-void grpc_json_writer_container_ends(grpc_json_writer* writer,
- grpc_json_type type);
+void grpc_json_writer_container_ends (grpc_json_writer * writer, grpc_json_type type);
/* Writes down an object key for the next value. */
-void grpc_json_writer_object_key(grpc_json_writer* writer, const char* string);
+void grpc_json_writer_object_key (grpc_json_writer * writer, const char *string);
/* Sets a raw value. Useful for numbers. */
-void grpc_json_writer_value_raw(grpc_json_writer* writer, const char* string);
+void grpc_json_writer_value_raw (grpc_json_writer * writer, const char *string);
/* Sets a raw value with its length. Useful for values like true or false. */
-void grpc_json_writer_value_raw_with_len(grpc_json_writer* writer,
- const char* string, size_t len);
+void grpc_json_writer_value_raw_with_len (grpc_json_writer * writer, const char *string, size_t len);
/* Sets a string value. It'll be escaped, and utf-8 validated. */
-void grpc_json_writer_value_string(grpc_json_writer* writer,
- const char* string);
+void grpc_json_writer_value_string (grpc_json_writer * writer, const char *string);
#endif /* GRPC_INTERNAL_CORE_JSON_JSON_WRITER_H */