mess822x 1.24
mess822x
Loading...
Searching...
No Matches
commands.h
Go to the documentation of this file.
1#ifndef COMMANDS_H
2#define COMMANDS_H
3
4struct commands {
5 char *verb;
6 void (*action)();
7 void (*flush)();
8} ;
9
10extern int commands();
11
12#endif
int commands()
void(* flush)()
Definition commands.h:7
char * verb
Definition commands.h:5
void(* action)()
Definition commands.h:6