
The whole extension was organised in one big 3727 lines monster. This refactoring is splitting these 3727 lines into several smaller files.
16 lines
459 B
C
16 lines
459 B
C
#ifndef INCLUDE_pygit2_commit_h
|
|
#define INCLUDE_pygit2_commit_h
|
|
|
|
#include <Python.h>
|
|
#include <git2.h>
|
|
|
|
PyObject* Commit_get_message_encoding(Commit *commit);
|
|
PyObject* Commit_get_message(Commit *commit);
|
|
PyObject* Commit_get_raw_message(Commit *commit);
|
|
PyObject* Commit_get_commit_time(Commit *commit);
|
|
PyObject* Commit_get_commit_time_offset(Commit *commit);
|
|
PyObject* Commit_get_committer(Commit *self);
|
|
PyObject* Commit_get_author(Commit *self);
|
|
|
|
#endif
|