From 42a2efb059e0ade0334d72d45de6fa4c6c3e11e6 Mon Sep 17 00:00:00 2001 From: Raphael Date: Thu, 4 Sep 2025 12:01:38 +0200 Subject: [PATCH] refactor: make ft_checks function static BREAKING CHANGE: function my_function is no longer exported --- memory/ft_memmove.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/memory/ft_memmove.c b/memory/ft_memmove.c index eafef17..6d63e80 100644 --- a/memory/ft_memmove.c +++ b/memory/ft_memmove.c @@ -6,13 +6,13 @@ /* By: rparodi +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/11/07 16:51:35 by rparodi #+# #+# */ -/* Updated: 2025/09/01 16:41:47 by rparodi ### ########.fr */ +/* Updated: 2025/09/04 11:56:02 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ #include -char *ft_checks(char *s, char *d, size_t n) +static char *ft_checks(char *s, char *d, size_t n) { size_t i;