Searched refs:stopByte (Results 1 – 4 of 4) sorted by relevance
/haiku/src/system/libroot/posix/string/ |
H A D | memccpy.c | 13 memccpy(void *_dest, const void *_source, int stopByte, size_t length) in memccpy() argument 20 if ((*dest++ = *source++) == (uint8)stopByte) in memccpy()
|
/haiku/src/tools/fs_shell/ |
H A D | string.cpp | 37 fssh_memccpy(void *dest, const void *source, int stopByte, fssh_size_t length) 39 return memccpy(dest, source, stopByte, length);
|
/haiku/headers/private/fs_shell/ |
H A D | fssh_string.h | 23 extern void *fssh_memccpy(void *dest, const void *source, int stopByte,
|
/haiku/headers/posix/ |
H A D | string.h | 22 extern void *memccpy(void *dest, const void *source, int stopByte, size_t length);
|