strlen -> str_len
@@ -1,7 +1,8 @@
#include <string.h>
#include "bstr.h"
#include "uint32.h"
#include "str.h"
int bstrlen(const char* a) {
if (*a) return strlen(a); else return uint32_read(a+1);
if (*a) return str_len(a); else return uint32_read(a+1);
}
The note is not visible to the blocked user.