added input redirection

This commit is contained in:
2026-05-12 17:32:57 +02:00
parent a9d4503bfe
commit 2cc7df8581
4 changed files with 100 additions and 2 deletions
+8
View File
@@ -0,0 +1,8 @@
#ifndef REDIRECTION_H
#define REDIRECTION_H
int detectRedirect(char **args, char **filename);
void executeRedirect(char **args, int type, char *filename);
#endif