vfs: check userland buffers before reading them.
[haiku.git] / src / system / libroot / posix / string / strchrnul.c
bloba83745c13e66ff040facb87d8d989fcf6195a7aa
1 /*
2 * Copyright 2003-2007, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 */
7 #include <sys/types.h>
8 #include <string.h>
11 char*
12 strchrnul(const char* string, int c)
14 while (string[0] != (char)c && string[0])
15 string++;
17 return (char*)string;