14 lines
320 B
C
14 lines
320 B
C
#ifndef EDITOR_OP_H_
|
|
#define EDITOR_OP_H_
|
|
|
|
#include "data.h"
|
|
|
|
void editorSetStatusMessage(const char *fmt, ...);
|
|
int editorRowCharCount(row_t *row, int x);
|
|
int editorRowCxToByte(const row_t *row, int cursor_x);
|
|
char *editorGetClipboard(void);
|
|
void editorSetClipboard(const char *text, int len);
|
|
|
|
|
|
#endif // EDITOR_OP_H_
|