Files
beluga/include/editor_op.h
T
Arthur Barraux 557fc8894a
Build project / build (push) Successful in 52s
Adding splitting screen and buffer switching
2026-01-24 19:29:46 +01:00

14 lines
219 B
C

#ifndef EDITOR_OP_H_
#define EDITOR_OP_H_
#include "data.h"
void bufferInsertChar(int c);
void bufferInsertNewLine();
void bufferDelChar();
void editorSetStatusMessage(const char *fmt, ...);
#endif // EDITOR_OP_H_