summaryrefslogtreecommitdiff
path: root/src/include/commands.h
blob: fed35e74f6d021d44d60044dc16fb8ad0490207b (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)();
  void (*flush)();
};

int commands();

#endif