blob: d16a4eaab2b4e519a6db5b695e01fd8c76457168 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef COMMANDS_H
#define COMMANDS_H
#include "buffer.h"
struct commands {
char *text;
void (*fun)();
void (*flush)();
} ;
int commands(buffer *,struct commands *);
#endif
|