diff options
author | Jannis Hoffmann <jannis@fehcom.de> | 2024-07-18 15:23:02 +0200 |
---|---|---|
committer | Jannis Hoffmann <jannis@fehcom.de> | 2024-07-18 15:23:02 +0200 |
commit | 9837632ea985b87eb6aaa7f619a0b859fc6c40f6 (patch) | |
tree | f143461843ba2fdaa8e7499ebf52afda3eb08cd4 /src/include/commands.h | |
parent | 7b4d3ab22988d021d5f12b81aec746f7e486fa52 (diff) |
Diffstat (limited to 'src/include/commands.h')
-rw-r--r-- | src/include/commands.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/commands.h b/src/include/commands.h index 3fd2cb8..d16a4ea 100644 --- a/src/include/commands.h +++ b/src/include/commands.h @@ -1,5 +1,6 @@ #ifndef COMMANDS_H #define COMMANDS_H +#include "buffer.h" struct commands { char *text; @@ -7,6 +8,6 @@ struct commands { void (*flush)(); } ; -int commands(); +int commands(buffer *,struct commands *); #endif |