1
0
Fork 0
mirror of https://gitea.quitesimple.org/crtxcr/cgitsb synced 2024-05-09 15:56:03 +02:00
cgitsb/cmd.h
Jason A. Donenfeld 03de473354 cmd: no need for pre function hook now
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
2015-08-14 15:54:32 +02:00

17 lines
244 B
C

#ifndef CMD_H
#define CMD_H
typedef void (*cgit_cmd_fn)(void);
struct cgit_cmd {
const char *name;
cgit_cmd_fn fn;
unsigned int want_repo:1,
want_vpath:1,
is_clone:1;
};
extern struct cgit_cmd *cgit_get_cmd(void);
#endif /* CMD_H */