row.h (373B)
1 #ifndef ROW_HEADER 2 #define ROW_HEADER 3 4 #include"jim.h" 5 #include<stddef.h> 6 7 int editorRowCxToRx(erow*, int); 8 int editorRowRxToCx(erow*, int); 9 void editorUpdateRow(erow*); 10 void editorInsertRow(int, char*, size_t); 11 void editorDelRow(int); 12 void editorRowInsertChar(erow*, int, char); 13 void editorRowAppendString(erow*, char*, size_t); 14 void editorRowDelChar(erow*, int); 15 16 #endif