efn/efn.h

17 lines
313 B
C
Raw Normal View History

#include <stdlib.h>
#include "globals.h"
2022-04-02 11:40:10 +00:00
extern void (*commands[256])(char *);
void c_quit(char *);
2022-04-02 11:40:10 +00:00
2022-04-02 12:46:20 +00:00
void c_open(char *);
#include <string.h>
void b_truncate(Row *);
void c_print(char *);
Row *b_insert(Row *);
2022-04-02 13:51:43 +00:00
Row *b_getline(Row *, int);
void c_writeline(char *);
2022-04-02 14:58:16 +00:00
void c_save(char*);
2022-04-02 15:05:07 +00:00
void c_insertline(char *);