aboutsummaryrefslogtreecommitdiff
path: root/include
AgeCommit message (Collapse)Author
2024-08-08Add data structure and prototypes for envDominik Kaiser
2024-06-28Add data structures for tokenizing and parsingDominik Kaiser
* Add data structures and helper functions for ast * Add data structures for tokenizing * Add helper functions for token structures * Include token.h in minishell.h * Add new/free functions for nodes/tokens to Makefile * Add UNREACHABLE macro to debug_tools.h
2024-06-25Add historyDominik Kaiser
2024-06-25Add basic command line Dominik Kaiser
* 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
2024-06-25Add debug toolsDominik Kaiser
* Add dbg() function and debug make rule * Add panic() debug function
2024-06-22Add main.c and minishell.hDominik Kaiser