summaryrefslogtreecommitdiff
path: root/src/git2/index.h
Commit message (Collapse)AuthorAgeFilesLines
* Move the external includes folder from `src` to `include`Vicent Marti2011-03-031-199/+0
| | | | Signed-off-by: Vicent Marti <tanoku@gmail.com>
* include "oid.h" in headers that use git_oidSakari Jokinen2011-02-251-0/+1
| | | | This makes generating bindings to hlibgit2 easier
* Revised platform types to use 'best supported' size.Alex Budovski2011-01-111-2/+3
| | | | | This will allow graceful migration to 64 bit file sizes and timestamps should git's binary interface be extended to allow this.
* Use generic types in git_index_entryVicent Marti2011-01-101-3/+3
| | | | | | | Off_t is not cool. It can be 32 or 64 bits depending on the platform, but on the Index format, it's always 32 bits. Signed-off-by: Vicent Marti <tanoku@gmail.com>
* Fix type-conversion warningsVicent Marti2010-12-061-3/+3
| | | | | | | The types in the git_index_entry struct are now system-defaults, and get truncated to uint32_t's when written back on the index. Signed-off-by: Vicent Marti <tanoku@gmail.com>
* Add license file to all public headersVicent Marti2010-12-061-1/+25
| | | | | | Yes, the public headers do need our license. Signed-off-by: Vicent Marti <tanoku@gmail.com>
* Change the library include fileVicent Marti2010-12-061-0/+173
Libgit2 is now officially include as #include "<git2.h>" or indidividual files may be included as #include <git2/index.h> Signed-off-by: Vicent Marti <tanoku@gmail.com>