From fd1ad20a2daf07de8a4c06e862963bfd556dad62 Mon Sep 17 00:00:00 2001 From: Joshua Haberman Date: Wed, 1 Jul 2009 18:48:22 -0700 Subject: Remove public visibility from a few parsing functions. --- upb_parse.h | 8 -------- 1 file changed, 8 deletions(-) (limited to 'upb_parse.h') diff --git a/upb_parse.h b/upb_parse.h index 45b5b76..14520f3 100644 --- a/upb_parse.h +++ b/upb_parse.h @@ -96,11 +96,6 @@ INLINE bool upb_check_type(upb_wire_type_t wt, upb_field_type_t ft) { /* Data-consuming functions (to be called from value cb). *********************/ -/* Parses a single tag from the character data starting at buf, and updates - * buf to point one past the bytes that were consumed. buf will be incremented - * by at most ten bytes. */ -upb_status_t upb_parse_tag(void **buf, void *end, struct upb_tag *tag); - /* Parses and converts a value from the character data starting at buf. The * caller must have previously checked that the wire type is appropriate for * this field type. For delimited data, buf is advanced to the beginning of @@ -115,9 +110,6 @@ upb_status_t upb_parse_value(void **buf, void *end, upb_field_type_t ft, upb_status_t upb_parse_wire_value(void **buf, void *end, upb_wire_type_t wt, union upb_wire_value *wv); -/* Like the above, but discards the wire value instead of saving it. */ -upb_status_t upb_skip_wire_value(void **buf, void *end, upb_wire_type_t wt); - #ifdef __cplusplus } /* extern "C" */ #endif -- cgit v1.2.3