#include <generated/asm-offsets.h>
#include <stddef.h>
Go to the source code of this file.
#define barrier |
( |
|
void | ) |
__asm__ __volatile__("": : :"memory") |
strlcat - Append a length-limited, NUL-terminated string to another : The string to be appended to : The string to append to it
: The size of the destination buffer.
strlcat - Append a length-limited, NUL-terminated string to another : The string to be appended to : The string to append to it : The size of the destination buffer.
Definition at line 154 of file string.c.
strlcpy - Copy a NUL terminated string into a sized buffer : Where to copy the string to : Where to copy the string from : size of destination buffer
Compatible with *BSD: the result is always a valid NUL-terminated string that fits in the buffer (unless, of course, the buffer size is zero). It does not pad out the result like strncpy() does.
Definition at line 94 of file string.c.