diff --git a/ex01/ft_strncpy.c b/ex01/ft_strncpy.c index 8a542b8..2e07184 100644 --- a/ex01/ft_strncpy.c +++ b/ex01/ft_strncpy.c @@ -6,12 +6,10 @@ /* By: tischmid +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/03/19 10:25:26 by tischmid #+# #+# */ -/* Updated: 2023/03/24 00:36:14 by tischmid ### ########.fr */ +/* Updated: 2023/03/24 01:05:10 by tischmid ### ########.fr */ /* */ /* ************************************************************************** */ -#define BUFSIZE 10 - char *ft_strncpy(char *dest, char *src, unsigned int n) { ++n; @@ -24,6 +22,8 @@ char *ft_strncpy(char *dest, char *src, unsigned int n) /* //// #include +#define BUFSIZE 10 + int main(void) {