Remove debug line

This commit is contained in:
Night Kaly 2025-02-13 10:48:51 +00:00
parent 0faafd22a3
commit 7ff570b1a8
Signed by: night0721
SSH key fingerprint: SHA256:B/hgVwUoBpx5vdNsXl9w8XwZljA9766uk6T4ubZp5HM

1
neo.c
View file

@ -147,7 +147,6 @@ int main(void)
/* Read from stdin (pipe) */
char buf[MAX_LINE];
while (count < MAX_LINES && fgets(buf, sizeof(buf), stdin)) {
printf("buf: %s\n", buf);
size_t len = strlen(buf);
if (len && buf[len - 1] == '\n') buf[len - 1] = '\0';
lines[count++] = strdup(buf);