ref: e09bbe69e19e5ae1eaf3de941cf4223d67dd874c
dir: /a.h/
/* BUFFER */
typedef struct Buffer Buffer;
struct Buffer
{
uchar *data;
usize count;
usize size;
};
int readfile(Buffer*, char*);
int writefile(Buffer*, char*);
int delete(Buffer*, int);
int insert(Buffer*, int);
int append(Buffer*, int);
/* UNDO */
typedef struct Undo Undo;
enum
{
Udelete,
Uinsert,
Uappend,
Uset,
};
struct Undo
{
int action;
int index;
uchar value;
uchar newvalue;
int modified;
};
int canundo(void);
void undo(Undo*);
int canredo(void);
void redo(Undo*);
void pushundo(int, int, uchar, uchar, int);
void patchundo(uchar);
/* ERROR */
void showerr(const char*, Mousectl*, Keyboardctl*);
/* COLORS */
enum
{
BACK,
ADDR,
HEX,
ASCII,
SCROLL,
NCOLS,
};
Image* cols[NCOLS];
void initcols(int);