lib: add glibc style strchrnul() variant
authorGrant Likely <grant.likely@linaro.org>
Fri, 14 Mar 2014 17:00:14 +0000 (17:00 +0000)
committerGrant Likely <grant.likely@linaro.org>
Fri, 23 May 2014 02:23:27 +0000 (11:23 +0900)
The strchrnul() variant helpfully returns a the end of the string
instead of a NULL if the requested character is not found. This can
simplify string parsing code since it doesn't need to expicitly check
for a NULL return. If a valid string pointer is passed in, then a valid
null terminated string will always come back out.

Signed-off-by: Grant Likely <grant.likely@linaro.org>

No differences found