You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
232 B

  1. #ifndef UTIL_H
  2. #define UTIL_H
  3. #include "config.h"
  4. /* Convert from ascii hex digit to number */
  5. uint8_t from_hex(uint8_t ch);
  6. extern const uint8_t hex[16];
  7. /* Array length */
  8. #define array_len(x) (sizeof(x)/sizeof(x[0]))
  9. #endif