summaryrefslogtreecommitdiff
path: root/upb/json
diff options
context:
space:
mode:
authorJosh Haberman <jhaberman@gmail.com>2015-07-07 18:46:14 -0700
committerJosh Haberman <jhaberman@gmail.com>2015-07-07 18:46:14 -0700
commit49dab06e03c16691c4dab1ba012fe8488089a590 (patch)
tree209f0749cbba6db8c9f0bf1094e6b5b5cd5190a0 /upb/json
parent6d9a9c727fd966acec7340aeabd5bf4039c6d929 (diff)
Brought into compliance with Google open-source policies.
- removed myself from Author headers in source files. - removed copyright notices from source file headers. - added CONTRIBUTING.md
Diffstat (limited to 'upb/json')
-rw-r--r--upb/json/parser.h13
-rw-r--r--upb/json/printer.c11
-rw-r--r--upb/json/printer.h12
3 files changed, 12 insertions, 24 deletions
diff --git a/upb/json/parser.h b/upb/json/parser.h
index 2facb45..8e608e8 100644
--- a/upb/json/parser.h
+++ b/upb/json/parser.h
@@ -1,12 +1,9 @@
/*
- * upb - a minimalist implementation of protocol buffers.
- *
- * Copyright (c) 2014 Google Inc. See LICENSE for details.
- * Author: Josh Haberman <jhaberman@gmail.com>
- *
- * upb::json::Parser can parse JSON according to a specific schema.
- * Support for parsing arbitrary JSON (schema-less) will be added later.
- */
+** upb::json::Parser (upb_json_parser)
+**
+** Parses JSON according to a specific schema.
+** Support for parsing arbitrary JSON (schema-less) will be added later.
+*/
#ifndef UPB_JSON_PARSER_H_
#define UPB_JSON_PARSER_H_
diff --git a/upb/json/printer.c b/upb/json/printer.c
index 7e52dc2..4a6f1ad 100644
--- a/upb/json/printer.c
+++ b/upb/json/printer.c
@@ -1,12 +1,7 @@
/*
- * upb - a minimalist implementation of protocol buffers.
- *
- * Copyright (c) 2014 Google Inc. See LICENSE for details.
- * Author: Josh Haberman <jhaberman@gmail.com>
- *
- * This currently uses snprintf() to format primitives, and could be optimized
- * further.
- */
+** This currently uses snprintf() to format primitives, and could be optimized
+** further.
+*/
#include "upb/json/printer.h"
diff --git a/upb/json/printer.h b/upb/json/printer.h
index 0b4e19c..84d814c 100644
--- a/upb/json/printer.h
+++ b/upb/json/printer.h
@@ -1,12 +1,8 @@
/*
- * upb - a minimalist implementation of protocol buffers.
- *
- * Copyright (c) 2014 Google Inc. See LICENSE for details.
- * Author: Josh Haberman <jhaberman@gmail.com>
- *
- * upb::json::Printer allows you to create handlers that emit JSON
- * according to a specific protobuf schema.
- */
+** upb::json::Printer
+**
+** Handlers that emit JSON according to a specific protobuf schema.
+*/
#ifndef UPB_JSON_TYPED_PRINTER_H_
#define UPB_JSON_TYPED_PRINTER_H_
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback