From 112487d69261e508c12a2b761a83a287355e2c0d Mon Sep 17 00:00:00 2001 From: salad Date: Tue, 8 Sep 2020 14:21:41 +0200 Subject: on god? --- src/c_input.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/c_input.c') diff --git a/src/c_input.c b/src/c_input.c index abe6314..e7a3f44 100644 --- a/src/c_input.c +++ b/src/c_input.c @@ -46,7 +46,8 @@ char *c_delchar(char *str, uint16_t cpos) i = 0; if (!(dst = malloc((ft_strlen(str)) * sizeof(char)))) return (NULL); - ft_printf("%d\n", cpos); + cpos -= 1; + /* ft_printf("[%c] [%d]\n", str[cpos], cpos); */ while (j < (ft_strlen(str) - 1)) { if (i == cpos) @@ -56,7 +57,7 @@ char *c_delchar(char *str, uint16_t cpos) j++; } dst[j] = '\0'; - ft_printf("dst : [%s]\n", dst); + /* ft_printf("dst : [%s]\n", dst); */ return (dst); } @@ -76,6 +77,6 @@ int16_t tputs(tgetstr("nd", NULL), 1, ft_putchar); i++; } - ret = ft_printf("%s, %hu", line, cpos) + ft_strlen(msh->ps[0]); + ret = ft_printf("%s", line) + ft_strlen(msh->ps[0]); return (ret); } -- cgit v1.2.3