#ifndef HAZEL_STRCMP_H_ #define HAZEL_STRCMP_H_ #include int strcmp(const char *str1, const char *str2) { while (*str1 && (*str1 == *str2)) { str1++; str2++; } return *(uint8_t *)str1 - *(uint8_t *)str2; } #endif