11 lines
172 B
C
11 lines
172 B
C
|
#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 *?
|