util.h 256 B

1234567891011121314151617
  1. /*
  2. * (c) 2015-2017 Marcos Del Sol Vives
  3. * (c) 2016 javiMaD
  4. *
  5. * SPDX-License-Identifier: MIT
  6. */
  7. #ifndef HAVE_UTIL_H
  8. #define HAVE_UTIL_H
  9. #include <stdint.h>
  10. #include <stdio.h>
  11. #include <string.h>
  12. void printhex(void * data, size_t size);
  13. #endif