refactor: make ft_checks function static

BREAKING CHANGE: function my_function is no longer exported
This commit is contained in:
Raphael 2025-09-04 12:01:38 +02:00
parent df67357056
commit 42a2efb059
No known key found for this signature in database

View file

@ -6,13 +6,13 @@
/* By: rparodi <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* 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 <unistd.h>
char *ft_checks(char *s, char *d, size_t n)
static char *ft_checks(char *s, char *d, size_t n)
{
size_t i;