vote up 2 vote down star

Is strlen(const char *s) defined when s is not null-terminated, and if so, what does it return?

flag
1  
Ask yourself: How should strlen() know where your string ends, if it's not null-terminated? – DevSolar Mar 10 at 20:50

10 Answers

vote up 10 vote down check

No, it is not defined. It may result in a memory access violation, as it will keep counting until it reaches the first memory byte whose value is 0.

link|flag
It can also cause demons to fly out your nose. catb.org/jargon/html/N/nasal-demons.html – Paul Tomblin Mar 10 at 18:02
vote up 6 vote down

From the C99 standard:

The strlen function returns the number of characters that precede the terminating null character.

If there is no null character that means the result is undefined.

link|flag
vote up 2 vote down

Not really, and it will cause bad things.

link|flag
vote up 1 vote down

It will return the number of characters encountered before '\0' is found.

link|flag
vote up 1 vote down

May be You need strnlen?

link|flag
Unfortunately, this isn't part of standard C. – joveha Mar 12 at 15:09
vote up 0 vote down

It is not defined. It causes undefined behavior which means anything can happen, most likely your program will crash.

link|flag
vote up 0 vote down

It is "defined", but it will crash your program because it will read beyond the end of the string into random memory, until it finds a null-terminator. This usually leads to access violatons.

link|flag
vote up 0 vote down

strlen() only works (does something useful) on null-terminated strings; you'll get an entirely undefined result if you pass in anything other than that. If you're lucky, it won't cause a crash :)

link|flag
correction, if he is lucky it will crash. You wouldn't want this type of error to go unnoticed :-P. – Evan Teran Mar 10 at 18:05
vote up 0 vote down

If your string is not NUL terminated, the function will keep looking until it finds one.

If you are lucky, this will cause your program to crash.

If you are not lucky, you will get a larger than expected length back, with a lot of 'unexpected' values in it.

link|flag
vote up -1 vote down

It is always defined.

It will return the length of the "string" until it reaches a byte with a null in it. Bad idea because this can cause a buffer overflow.

link|flag
No, it's not defined. Once you start traversing beyond the space that was allocated for the string, either through malloc or on the stack/heap, the results are strictly undefined. – Paul Tomblin Mar 10 at 18:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.