mirror of
https://github.com/Savapitech/42sh.git
synced 2026-03-18 21:50:35 +01:00
16 lines
240 B
C
16 lines
240 B
C
/*
|
|
** EPITECH PROJECT, 2024
|
|
** CPoolDay08
|
|
** File description:
|
|
** ./u_realloc.c
|
|
*/
|
|
|
|
#include <stddef.h>
|
|
|
|
void *u_memcpy(char *dst, char const *src, size_t sz)
|
|
{
|
|
for (size_t i = 0; i < sz; i++)
|
|
dst[i] = src[i];
|
|
return dst;
|
|
}
|