ft_strlcat.c

This commit is contained in:
Timo Schmidt 2023-03-28 02:52:09 +02:00
parent 385904df49
commit 5e47f727ab
1 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
/* By: tischmid <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/03/24 03:19:16 by tischmid #+# #+# */
/* Updated: 2023/03/28 02:49:49 by tischmid ### ########.fr */
/* Updated: 2023/03/28 02:51:57 by tischmid ### ########.fr */
/* */
/* ************************************************************************** */
@ -14,7 +14,7 @@
unsigned int ft_strlcat(char *dest, char *src, unsigned int size)
{
int src_len;
unsigned int src_len;
unsigned int i;
char *o_src;