Fully fonctional editing
This commit is contained in:
+12
-2
@@ -5,14 +5,24 @@
|
||||
#include "define.h"
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <time.h>
|
||||
#include <unistd.h>
|
||||
|
||||
int editorRowCxToRx(erow *row, int cursor_x);
|
||||
|
||||
void editorUpdateRow(erow *row);
|
||||
|
||||
void editorAppendRow(struct editorConfig *E, char *s, size_t len);
|
||||
void editorInsertRow(struct editorConfig *E, int at, char *s, size_t len);
|
||||
|
||||
void editorRowInsertChar(erow *row, int at, int c);
|
||||
void editorFreeRow(erow *row);
|
||||
|
||||
void editorDelRow(struct editorConfig *E, int at);
|
||||
|
||||
void editorRowInsertChar(struct editorConfig *E, erow *row, int at, int c);
|
||||
|
||||
void editorRowAppendString(struct editorConfig *E, erow *row, char *s,
|
||||
size_t len);
|
||||
|
||||
void editorRowDelchar(struct editorConfig *E, erow *row, int at);
|
||||
|
||||
#endif // ROW_OP_H_
|
||||
|
||||
Reference in New Issue
Block a user