summaryrefslogtreecommitdiff
path: root/upb/shim
diff options
context:
space:
mode:
Diffstat (limited to 'upb/shim')
-rw-r--r--upb/shim/shim.c6
-rw-r--r--upb/shim/shim.h25
2 files changed, 10 insertions, 21 deletions
diff --git a/upb/shim/shim.c b/upb/shim/shim.c
index 2f7f215..42bdb10 100644
--- a/upb/shim/shim.c
+++ b/upb/shim/shim.c
@@ -1,9 +1,3 @@
-/*
- * upb - a minimalist implementation of protocol buffers.
- *
- * Copyright (c) 2013 Google Inc. See LICENSE for details.
- * Author: Josh Haberman <jhaberman@gmail.com>
- */
#include "upb/shim/shim.h"
diff --git a/upb/shim/shim.h b/upb/shim/shim.h
index 0ccd6fb..935f085 100644
--- a/upb/shim/shim.h
+++ b/upb/shim/shim.h
@@ -1,19 +1,14 @@
/*
- * upb - a minimalist implementation of protocol buffers.
- *
- * Copyright (c) 2013 Google Inc. See LICENSE for details.
- * Author: Josh Haberman <jhaberman@gmail.com>
- *
- * For handlers that do very tiny, very simple operations, the function call
- * overhead of calling a handler can be significant. This file allows the
- * user to define handlers that do something very simple like store the value
- * to memory and/or set a hasbit. JIT compilers can then special-case these
- * handlers and emit specialized code for them instead of actually calling the
- * handler.
- *
- * The functionality is very simple/limited right now but may expand to be able
- * to call another function.
- */
+** For handlers that do very tiny, very simple operations, the function call
+** overhead of calling a handler can be significant. This file allows the
+** user to define handlers that do something very simple like store the value
+** to memory and/or set a hasbit. JIT compilers can then special-case these
+** handlers and emit specialized code for them instead of actually calling the
+** handler.
+**
+** The functionality is very simple/limited right now but may expand to be able
+** to call another function.
+*/
#ifndef UPB_SHIM_H
#define UPB_SHIM_H
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback