efn/efn.h

19 lines
234 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 *);
*/
2022-04-02 11:40:10 +00:00
2022-04-02 12:46:20 +00:00
#include <string.h>
void b_truncate(Row *);
Row *b_insert(Row *);
2022-04-02 13:51:43 +00:00
Row *b_getline(Row *, int);
extern void (*commands[256])(char *, char **);
2022-04-02 16:28:26 +00:00
2022-04-02 16:12:22 +00:00