Mode | Name | Size | |
---|---|---|---|
-rwxr-xr-x | commit-links.sh | 1007 | logstatsplain |
-rwxr-xr-x | syntax-highlighting.sh | 2986 | logstatsplain |
![]() |
index : cgit | |
Web front-end for git that you're looking at right now. Might have had a few additions from upstream. |
summaryrefslogtreecommitdiffstatshomepage |
Mode | Name | Size | |
---|---|---|---|
-rwxr-xr-x | commit-links.sh | 1007 | logstatsplain |
-rwxr-xr-x | syntax-highlighting.sh | 2986 | logstatsplain |
#ifndef CMD_H
#define CMD_H
typedef void (*cgit_cmd_fn)(struct cgit_context *ctx);
struct cgit_cmd {
const char *name;
cgit_cmd_fn fn;
unsigned int want_repo:1,
want_layout:1,
want_vpath:1,
is_clone:1;
};
extern struct cgit_cmd *cgit_get_cmd(struct cgit_context *ctx);
#endif /* CMD_H */