Files
cgit/src/commit.h
2024-05-30 17:12:29 +02:00

11 lines
269 B
C

#ifndef COMMIT_H
#define COMMIT_H 1
#include "types.h"
int commit_from_object(struct commit *commit, struct object *object);
void free_commit(struct commit *commit);
void diff_commit(struct commit *commit_a, struct commit *commit_b);
int commit();
#endif // COMMIT_H