chore: use correct size_t instead of t_size

This commit is contained in:
Khaïs COLIN 2024-10-16 15:20:28 +02:00
parent aad909fe23
commit b81ad331b5
10 changed files with 40 additions and 40 deletions

View file

@ -6,7 +6,7 @@
/* By: kcolin <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/15 13:57:12 by kcolin #+# #+# */
/* Updated: 2024/10/15 14:39:52 by kcolin ### ########.fr */
/* Updated: 2024/10/16 15:18:46 by kcolin ### ########.fr */
/* */
/* ************************************************************************** */
@ -25,9 +25,9 @@
* it doesn't matter how the data is copied
* merge with case 2
*/
void *ft_memmove(void *dest, const void *src, t_size n)
void *ft_memmove(void *dest, const void *src, size_t n)
{
t_size i;
size_t i;
if (dest >= src && dest <= (src + n))
{