summaryrefslogtreecommitdiffstats
path: root/commands.h
blob: 0e36409cb3650e8e7e6ad8dbd70236a8a45f98f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef COMMANDS_H
#define COMMANDS_H

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

extern int commands();

#endif