aboutsummaryrefslogtreecommitdiff
path: root/lib/libft/ft_strcat.c
diff options
context:
space:
mode:
authorChristopher Uhlig2025-01-14 18:18:58 +0100
committerChristopher Uhlig2025-01-14 18:18:58 +0100
commitda80405b345b58f9e1bd83039b1df3771b5ca193 (patch)
treed8ddb9fa078fa353dc55992dd9609a0c798e56ad /lib/libft/ft_strcat.c
parent8c37f835ba29bcecc1d779edb396d97b18667026 (diff)
downloadminishell-da80405b345b58f9e1bd83039b1df3771b5ca193.tar.gz
minishell-da80405b345b58f9e1bd83039b1df3771b5ca193.zip
update for exit bit norm removed staic stuff added prompt flag
Diffstat (limited to 'lib/libft/ft_strcat.c')
-rw-r--r--lib/libft/ft_strcat.c4
1 files changed, 2 insertions, 2 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
+}