17 static inline char hexdigit (
int digit) {
18 assert (digit >= 0 && digit <= 15);
26 static inline void do_indent (std::ostream &target,
int amount) {
27 for (
int i = 0; i < amount; i++) {
36 static inline void do_newline (std::ostream &target,
int amount) {
Serialization and parsing library.
Definition parsnip.h:38
const char hex_digits[]
Digits used for encoding/decoding hexadecimal.
Definition parsnip_types.cpp:19