-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmemory.h
21 lines (17 loc) · 1.09 KB
/
memory.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* memory.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: marvin <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/10/06 12:39:30 by marvin #+# #+# */
/* Updated: 2023/10/06 12:41:48 by marvin ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MEMORY_H
# define MEMORY_H
# include <stddef.h>
void *_Nullable dyn_memcpy(void *_Nonnull dst, void *_Nonnull src, size_t n);
void *_Nullable dyn_memove(void *_Nonnull dst, void *_Nonnull src, size_t n);
#endif