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
Hadeed Ahmad 165eea1844 Do some work on the text editing
A little is left, and there are bugs
2023-09-04 15:06:35 +05:00

13 lines
271 B
C

#ifndef COMMANDS_H
#define COMMANDS_H
#include "input.h"
void command_quit(void);
void command_move_cursor(KEY key);
void command_insert_line(void);
void command_insert_char(char c);
void command_delete_char(void);
void command_save_buffer(void);
#endif // COMMANDS_H