tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 1b93b065fc3eb52fe5674d6df05c71c505ed1ef3
parent 405fa42e8a835de394503231a85258972a65bd89
Author: Nick Mathewson <nickm@torproject.org>
Date:   Fri, 22 Jun 2018 14:11:37 -0400

Make an inline static so we can build with coverage enabled.

Diffstat:
Msrc/lib/string/compat_ctype.h | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/lib/string/compat_ctype.h b/src/lib/string/compat_ctype.h @@ -31,10 +31,10 @@ extern const uint8_t TOR_TOLOWER_TABLE[]; #define TOR_TOLOWER(c) (TOR_TOLOWER_TABLE[(uint8_t)c]) #define TOR_TOUPPER(c) (TOR_TOUPPER_TABLE[(uint8_t)c]) -inline int hex_decode_digit(char c); +static inline int hex_decode_digit(char c); /** Helper: given a hex digit, return its value, or -1 if it isn't hex. */ -inline int +static inline int hex_decode_digit(char c) { switch (c) {