| 356 | } |
| 357 | void UType(uint8_t x, const char *name) { Named(x, name); } |
| 358 | void Bool(bool x) { s += x ? "true" : "false"; } |
| 359 | void Char(int8_t x, const char *name) { Named(x, name); } |
| 360 | void UChar(uint8_t x, const char *name) { Named(x, name); } |
| 361 | void Short(int16_t x, const char *name) { Named(x, name); } |
no outgoing calls
no test coverage detected