util.h 250 B

123456789101112
  1. #ifndef UTIL_H
  2. #define UTIL_H
  3. #include "../cpu/types.h"
  4. void memory_copy(char *source, char *dest, int nbytes);
  5. void memory_set(u8 *dest, u8 val, u32 len);
  6. void int_to_ascii(int n, char str[]);
  7. void reverse(char s[]);
  8. int strlen(char s[]);
  9. #endif