bc66e673fa
# Conflicts: # include/builtins.h # include/data.h # include/editor_op.h # include/file_io.h # include/input.h # include/row_op.h # install.sh # main.c # meson.build # src/builtins.c # src/editor_op.c # src/file_io.c # src/init.c # src/input.c # src/output.c # src/row_op.c
12 lines
196 B
C
12 lines
196 B
C
#ifndef EDITOR_OP_H_
|
|
#define EDITOR_OP_H_
|
|
|
|
#include "data.h"
|
|
void bufferInsertChar(int c);
|
|
|
|
void bufferInsertNewLine();
|
|
|
|
void editorSetStatusMessage(const char *fmt, ...);
|
|
|
|
#endif // EDITOR_OP_H_
|