summaryrefslogtreecommitdiff
path: root/src/include/commands.h
blob: ea15add927e79b23e53942aa60369799c1dfd6cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef COMMANDS_H
#define COMMANDS_H

#include "buffer.h"

struct commands {
  char *text;
  void (*fun)(char *);
  void (*flush)(void);
};

extern int commands(buffer *, struct commands *);

#endif