1
0
Fork 0

added length limit for _strlen

I wanted the limit specifier for strings (e.g. "%16.s") to be usable in situations when zero termination isn't guaranteed. As a simple fix I added lenght limitation to _strlen.
development
cz7asm 6 years ago committed by GitHub
parent 0d641bcd9c
commit b04d55907f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -141,10 +141,12 @@ static inline void _out_fct(char character, void* buffer, size_t idx, size_t max
// internal strlen
// \return The length of the string (excluding the terminating 0)
static inline unsigned int _strlen(const char* str)
// limited by 'max' size if non-zero
static inline unsigned int _strlen(const char* str, size_t max)
{
const char* s;
for (s = str; *s; ++s);
size_t n = max;
for (s = str; *s && (max?n--:1); ++s);
return (unsigned int)(s - str);
}

Loading…
Cancel
Save