This commit is contained in:
Loic Deridder
2025-02-11 16:01:16 +01:00
parent 5de086624e
commit 23791a53d9
14 changed files with 284 additions and 245 deletions

View File

@@ -12,9 +12,9 @@
#include "../../libft.h"
char *rep_c(char c, int count)
char *rep_c(char c, int count)
{
char *out;
char *out;
out = malloc(sizeof(char) * (count + 1));
ft_memset(out, c, count);