aboutsummaryrefslogtreecommitdiff
path: root/lib/libft
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libft')
-rw-r--r--lib/libft/ft_strcat.c4
-rw-r--r--lib/libft/ft_strcmp.c4
-rw-r--r--lib/libft/ft_strcpy.c4
3 files changed, 6 insertions, 6 deletions
diff --git a/lib/libft/ft_strcat.c b/lib/libft/ft_strcat.c
index 648c184..b21235b 100644
--- a/lib/libft/ft_strcat.c
+++ b/lib/libft/ft_strcat.c
@@ -6,7 +6,7 @@
/* By: chuhlig <chuhlig@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/01/09 13:06:44 by chuhlig #+# #+# */
-/* Updated: 2025/01/09 13:07:15 by chuhlig ### ########.fr */
+/* Updated: 2025/01/14 14:09:49 by chuhlig ### ########.fr */
/* */
/* ************************************************************************** */
@@ -26,4 +26,4 @@ char *ft_strcat(char *dest, char *src)
}
dest[i + j] = '\0';
return (dest);
-} \ No newline at end of file
+}
diff --git a/lib/libft/ft_strcmp.c b/lib/libft/ft_strcmp.c
index af7b2a1..a319c63 100644
--- a/lib/libft/ft_strcmp.c
+++ b/lib/libft/ft_strcmp.c
@@ -6,7 +6,7 @@
/* By: chuhlig <chuhlig@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/12/18 19:03:14 by chuhlig #+# #+# */
-/* Updated: 2024/12/18 19:05:01 by chuhlig ### ########.fr */
+/* Updated: 2025/01/14 14:09:59 by chuhlig ### ########.fr */
/* */
/* ************************************************************************** */
@@ -20,4 +20,4 @@ int ft_strcmp(char *s1, char *s2)
while (s1[i] && s1[i] == s2[i])
i++;
return (s1[i] - s2[i]);
-} \ No newline at end of file
+}
diff --git a/lib/libft/ft_strcpy.c b/lib/libft/ft_strcpy.c
index b5c612f..94a07f7 100644
--- a/lib/libft/ft_strcpy.c
+++ b/lib/libft/ft_strcpy.c
@@ -6,7 +6,7 @@
/* By: chuhlig <chuhlig@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/01/09 14:38:30 by chuhlig #+# #+# */
-/* Updated: 2025/01/09 14:38:53 by chuhlig ### ########.fr */
+/* Updated: 2025/01/14 14:10:06 by chuhlig ### ########.fr */
/* */
/* ************************************************************************** */
@@ -22,4 +22,4 @@ char *ft_strcpy(char *dest, char *src)
}
dest[i] = '\0';
return (dest);
-} \ No newline at end of file
+}