#ifndef SHORTLOG_H #define SHORTLOG_H #include "string-list.h" #include "date.h" struct commit; struct shortlog { … }; void shortlog_init(struct shortlog *log); void shortlog_finish_setup(struct shortlog *log); void shortlog_add_commit(struct shortlog *log, struct commit *commit); void shortlog_output(struct shortlog *log); #endif