]> git.dkaiser.de - 42/minishell.git/commit
Add basic command line
authorDominik Kaiser <141638109+dpu-kaiser@users.noreply.github.com>
Tue, 25 Jun 2024 12:02:02 +0000 (14:02 +0200)
committerGitHub <noreply@github.com>
Tue, 25 Jun 2024 12:02:02 +0000 (14:02 +0200)
commit97cca528658e5b811a56600b7c0b4f9c11bf83fc
tree38120dd91e74a8f5073a5af414245ccbf4fbd417
parent0d7a57a7bc14831d6d7076ccb0ea7a7213ddd7fb
Add basic command line

* Initialize terminal and signal handling
* Add basic repl that doesn't do anything yet
* Add handling for Ctrl-C, Ctrl-D and Ctrl-\ in interactive mode
Makefile
include/minishell.h
src/debug_tools.c
src/init.c [new file with mode: 0644]
src/main.c
src/repl.c [new file with mode: 0644]
src/signal_handling.c [new file with mode: 0644]