diff options
| -rw-r--r-- | main.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -14,8 +14,8 @@ struct command { }; struct exec_command { - struct command *cmd; - void (*func); + const char *cmd; + void (*func)(const char *); }; |
![]() |
index : unix-shell.git | |
| Unnamed repository; edit this file 'description' to name the repository. |
| summaryrefslogtreecommitdiff |
| -rw-r--r-- | main.c | 4 |
@@ -14,8 +14,8 @@ struct command { }; struct exec_command { - struct command *cmd; - void (*func); + const char *cmd; + void (*func)(const char *); }; |