vip/include/editor.h

10 lines
134 B
C
Raw Normal View History

2024-07-01 21:40:07 +02:00
#ifndef EDITOR_H_
#define EDITOR_H_
void insert_char(int c);
void insert_new_line();
void shift_new_line();
void del_char();
2024-07-01 21:40:07 +02:00
#endif