diff options
author | Kent Overstreet <kent.overstreet@linux.dev> | 2024-01-16 17:00:02 -0500 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2024-01-16 17:17:23 -0500 |
commit | b5fd066153c40a70a29caa1ea7987723ab687763 (patch) | |
tree | 6d43a8b0a90d549a54c65565ac96c92b3e84b594 /c_src/include/linux/string.h | |
parent | 06ff8b55b70fda44d91b31b5511fafd1680a8934 (diff) |
Move c_src dirs back to toplevel
We just wanted c sourcefiles out of the top level, not c source
directories.
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'c_src/include/linux/string.h')
-rw-r--r-- | c_src/include/linux/string.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/c_src/include/linux/string.h b/c_src/include/linux/string.h deleted file mode 100644 index 3ceda3a3..00000000 --- a/c_src/include/linux/string.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _TOOLS_LINUX_STRING_H_ -#define _TOOLS_LINUX_STRING_H_ - -#include <stdlib.h> -#include <string.h> -#include <linux/types.h> /* for size_t */ - -extern size_t strlcpy(char *dest, const char *src, size_t size); -extern ssize_t strscpy(char *dest, const char *src, size_t count); -extern char *strim(char *); -extern void memzero_explicit(void *, size_t); -int match_string(const char * const *, size_t, const char *); - -#define kstrndup(s, n, gfp) strndup(s, n) -#define kstrdup(s, gfp) strdup(s) - -#endif /* _LINUX_STRING_H_ */ |