The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#ifndef COMMANDS_H
#define COMMANDS_H

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

extern int commands();

#endif