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 f866add58f Begin work on text editing
Along with lots of stuff I was too lazy to commit separately
2023-09-02 10:30:25 +05:00

9 lines
150 B
C

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