MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / parse_hex_digits

Function parse_hex_digits

core/usb/dusb.c:804–806  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

802}
803
804static int parse_hex_digits(const char *c) {
805 return parse_hex_digit(c[0]) << 4 | parse_hex_digit(c[1]) << 0;
806}
807
808int usb_dusb_device(usb_event_t *event) {
809 dusb_context_t *context = event->context;

Callers 1

usb_dusb_deviceFunction · 0.85

Calls 1

parse_hex_digitFunction · 0.85

Tested by

no test coverage detected