codecrafters-shell-c

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit ff7d84a222c59a1f67c7ffc6fd64706d93d6a222
parent b83accbbd5c9a9239fe9138966e6dc5662559a1d
Author: 5hif7y <[email protected]>
Date:   Mon, 30 Dec 2024 17:54:07 -0300

5 exit 0 without message

Diffstat:
Mapp/main.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/main.c b/app/main.c @@ -28,7 +28,7 @@ int main() { printf("Exiting...\n"); running = false; } else if(!strcmp(input, "exit 0")){ - printf("Exiting...\n"); + //printf("Exiting...\n"); running = false; } else { printf("%s: command not found\n", input);