diff options
author | dzwdz | 2022-06-29 23:07:21 +0200 |
---|---|---|
committer | dzwdz | 2022-06-29 23:07:21 +0200 |
commit | bf4f2bb63ed01026b1078f5f7ebfc005bb4bf6d3 (patch) | |
tree | 4b1abbcff1db9589709470918b3e75a73ed30341 /src/shared/mem.h | |
parent | bf4cbc830d78774ac00d9501c45e8b84d0ae9ae7 (diff) |
init/fs: tmpfs driver with support for creating new files
Diffstat (limited to 'src/shared/mem.h')
-rw-r--r-- | src/shared/mem.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shared/mem.h b/src/shared/mem.h index 7036381..8eb091f 100644 --- a/src/shared/mem.h +++ b/src/shared/mem.h @@ -1,6 +1,7 @@ #pragma once #include <stddef.h> +void *memchr(const void *s, int c, size_t n); int memcmp(const void *s1, const void *s2, size_t n); void *memcpy(void *dest, const void *src, size_t n); |