From 1f71f8a1e0b17260e746e86aa8b3cb3dbe42771c Mon Sep 17 00:00:00 2001 From: Oskar Date: Thu, 7 Mar 2024 20:04:50 +0100 Subject: validate_N() is done. I removed some printf tests from the code. --- input.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/input.c b/input.c index 555485a..28c6587 100644 --- a/input.c +++ b/input.c @@ -164,11 +164,9 @@ int validate_N(char *smode_buf) { if (smode_buf[1] == '+' || smode_buf[1] == '-') { if (smode_buf[2] == '0') { - printf("smode_buf[2] == 0 (_INVALID)\n"); return _INVALID; } if (smode_buf[2] == '\n') { // If its only N+ or N- then invalid - printf("smode_buf[2] == \\n (_INVALID)\n"); return _INVALID; } -- cgit v1.2.3