assignment 1

This commit is contained in:
2024-02-16 15:34:28 +01:00
commit 00d7dcfa88
13 changed files with 1179 additions and 0 deletions

9
shell.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef SHELL_SHELL_H
#define SHELL_SHELL_H
#include "scanner.h"
#include <stdbool.h>
bool parseInputLine(List *lp);
#endif