diff options
Diffstat (limited to '')
-rw-r--r-- | src/c_input.c | 7 |
1 files changed, 4 insertions, 3 deletions
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); } |