Archived
1
Fork 0
This repository has been archived on 2024-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
kilo/include/commands.h

14 lines
271 B
C
Raw Normal View History

2023-09-01 15:04:12 +00:00
#ifndef COMMANDS_H
#define COMMANDS_H
#include "input.h"
2023-09-04 03:56:00 +00:00
void command_quit(void);
void command_move_cursor(KEY key);
void command_insert_line(void);
void command_insert_char(char c);
2023-09-04 03:56:00 +00:00
void command_delete_char(void);
2023-09-03 11:01:22 +00:00
void command_save_buffer(void);
2023-09-01 15:04:12 +00:00
#endif // COMMANDS_H