temp commit

This commit is contained in:
2026-05-22 13:40:03 +02:00
parent bc66e673fa
commit edb5384f0e
23 changed files with 848 additions and 621 deletions
+4 -12
View File
@@ -10,17 +10,9 @@
void bufferInsertRow(struct buffer_t *buffer, int at, char *s, size_t len);
int editorRowCxToByte(const row_t *row, int cursor_x);
int editorRowCharCount(row_t *row);
void bufferDelRow(struct buffer_t *buffer, int at);
void editorRowInsertBytes(row_t *row, int at, const char *src, int len);
void editorRowDelByte(row_t *row, int at, int n);
void bufferRowInsertChar(struct buffer_t *buffer, frow *row, int at, int c);
void bufferRowAppendString(struct buffer_t *buffer, frow *row, char *s, size_t len);
void bufferRowDelchar(struct buffer_t *buffer, frow *row, int at);
void bufferFreeRow(row_t *row);
int editorRowCharCount(row_t *row, int x);
void bufferRowInsertBytes(struct buffer_t *buffer, row_t *row, int at, char *src, int n);
void bufferRowDelByte(struct buffer_t *buffer, row_t *row, int at, int n);
#endif // ROW_OP_H_