hexagram/bin/app.h

11 lines
172 B
C
Raw Normal View History

2019-05-07 20:39:39 -05:00
#ifndef _APP_H
#define _APP_H
typedef struct {
const char *name;
const char *arglist;
int (*main)(int argc, char **argv);
} hexagram_app;
#endif /* _APP_H *?