This commit is contained in:
iceman1001 2020-01-04 16:16:43 +01:00
parent d39b113b40
commit c97775e907

View file

@ -50,8 +50,7 @@ void memxor(uint8_t *dest, uint8_t *src, size_t len) {
int strlen(const char *str) {
const char *p;
for (p = str; *p != '\0'; ++p) {
}
for (p = str; *p != '\0'; ++p) {};
return p - str;
}