Reimplementation of Pijul in C, for education, fun and absolutely no profit
#ifndef ANI_COMMANDS_H
#define ANI_COMMANDS_H

/* TODO impl all commands in a central location */
int cmd_init(int, const char **, struct repository *);
int cmd_change(int, const char **, struct repository *);
int cmd_pristine(int, const char **, struct repository *);

#endif