#ifndef ROW_OP_H_ #define ROW_OP_H_ #include "data.h" #include "define.h" #include #include #include int editorRowCxToRx(erow *row, int cursor_x); void editorUpdateRow(erow *row); void editorAppendRow(struct editorConfig *E, char *s, size_t len); void editorRowInsertChar(erow *row, int at, int c); #endif // ROW_OP_H_