vip/include/editor.h

8 lines
111 B
C

#ifndef EDITOR_H_
#define EDITOR_H_
void insert_char(int c);
void insert_new_line();
void del_char();
#endif