19 lines
234 B
C
19 lines
234 B
C
#include <stdlib.h>
|
|
#include "globals.h"
|
|
|
|
/*
|
|
extern void (*commands[256])(char *);
|
|
*/
|
|
|
|
|
|
#include <string.h>
|
|
void b_truncate(Row *);
|
|
Row *b_insert(Row *);
|
|
Row *b_getline(Row *, int);
|
|
|
|
extern void (*commands[256])(char *, char **);
|
|
|
|
|
|
|
|
|