#ifndef COMMANDS_H #define COMMANDS_H struct commands { char *text; void (*fun)(char *arg); void (*flush)(); } ; extern int commands(); #endif