summaryrefslogtreecommitdiff
path: root/v0.1.0.json
diff options
context:
space:
mode:
authorVicent Marti <tanoku@gmail.com>2012-05-19 02:06:20 +0200
committerVicent Marti <tanoku@gmail.com>2012-05-19 02:06:20 +0200
commite9ec10073b02f09e8729149b904d5d006576c6b1 (patch)
tree91789d6fcd35cb05eff8a1ff329753d88b49aadf /v0.1.0.json
parent683633cc00a024cfb165e10a5cdc6b10a9bea868 (diff)
downloadlibgit2-e9ec10073b02f09e8729149b904d5d006576c6b1.tar.gz
generated docs
Diffstat (limited to 'v0.1.0.json')
-rw-r--r--v0.1.0.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/v0.1.0.json b/v0.1.0.json
index e62359361..f114204e0 100644
--- a/v0.1.0.json
+++ b/v0.1.0.json
@@ -1 +1 @@
-{"functions":{"git_odb_open":{"return":{"type":"int","comment":"GIT_SUCCESS if the database opened; otherwise an error code describing why the open was not possible."},"group":"odb","file":"odb.h","sig":"git_odb **::const char *","comments":"","argline":"git_odb **out, const char *objects_dir","line":20,"args":[{"type":"git_odb **","comment":"location to store the database pointer, if opened. Set to NULL if the open failed.","name":"out"},{"type":"const char *","comment":"path of the database's \"objects\" directory.","name":"objects_dir"}],"rawComments":"\n Open an object database for read/write access.\n @param out location to store the database pointer, if opened.\n Set to NULL if the open failed.\n @param objects_dir path of the database's \"objects\" directory.\n @return GIT_SUCCESS if the database opened; otherwise an error\n code describing why the open was not possible.\n\n","lineto":28,"description":"Open an object database for read/write access."},"git_commit_set_message":{"return":{"type":"void","comment":""},"group":"commit","file":"commit.h","sig":"git_commit *::const char *","comments":"","argline":"git_commit *commit, const char *message","line":103,"args":[{"type":"git_commit *","comment":"the commit object","name":"commit"},{"type":"const char *","comment":"the new message","name":"message"}],"rawComments":"\n Set the message of a commit\n @param commit the commit object\n @param message the new message\n\n","lineto":108,"description":"Set the message of a commit"},"git_obj__loose_object_type":{"return":{"type":"int","comment":"true if the type represents a valid loose object type, false otherwise."},"group":"obj","file":"odb.h","sig":"git_otype","comments":"","argline":"git_otype type","line":164,"args":[{"type":"git_otype","comment":"object type to test.","name":"type"}],"rawComments":"\n Determine if the given git_otype is a valid loose object type.\n\n @param type object type to test.\n @return true if the type represents a valid loose object type,\n false otherwise.\n\n","lineto":171,"description":"Determine if the given git_otype is a valid loose object type."},"git_strerror":{"return":{"type":"const char *","comment":"a string explaining the error code"},"group":"errors","file":"errors.h","sig":"int","comments":"","argline":"int num","line":24,"args":[{"type":"int","comment":"The error code to explain","name":"num"}],"rawComments":"\n strerror() for the Git library\n @param num The error code to explain\n @return a string explaining the error code\n\n","lineto":29,"description":"strerror() for the Git library"},"git_oid_pathfmt":{"return":{"type":"void","comment":""},"group":"oid","file":"oid.h","sig":"char *::const git_oid *","comments":"","argline":"char *str, const git_oid *oid","line":59,"args":[{"type":"char *","comment":"output hex string; must be pointing at the start of the hex sequence and have at least the number of bytes needed for an oid encoded in hex (41 bytes). Only the oid digits are written; a '\\\\0' terminator must be added by the caller if it is required.","name":"str"},{"type":"const git_oid *","comment":"oid structure to format.","name":"oid"}],"rawComments":"\n Format a git_oid into a loose-object path string.\n <p>\n The resulting string is \"aa/...\", where \"aa\" is the first two\n hex digitis of the oid and \"...\" is the remaining 38 digits.\n\n @param str output hex string; must be pointing at the start of\n the hex sequence and have at least the number of bytes\n needed for an oid encoded in hex (41 bytes). Only the\n oid digits are written; a '\\\\0' terminator must be added\n by the caller if it is required.\n @param oid oid structure to format.\n\n","lineto":72,"description":"Format a git_oid into a loose-object path string. <p> The resulting string is \"aa/...\", where \"aa\" is the first two hex digitis of the oid and \"...\" is the remaining 38 digits."},"git_repository_newobject":{"return":{"type":"int","comment":"the new object"},"group":"repository","file":"repository.h","sig":"git_object **::git_repository *::git_otype","comments":"The object's attributes can be filled in using the\n corresponding setter methods.\n\n The object will be written back to given git_repository\n when the git_object_write() function is called; objects\n cannot be written to disk until all their main\n attributes have been properly filled.\n\n Objects are instantiated with no SHA1 id; their id\n will be automatically generated when writing to the\n repository.\n\n @parem repo Repository where the object belongs","argline":"git_object **object, git_repository *repo, git_otype type","line":80,"args":[{"type":"git_object **","comment":"pointer to the new object","name":"object"},{"type":"git_repository *","comment":"","name":"repo"},{"type":"git_otype","comment":"Type of the object to be created","name":"type"}],"rawComments":"\n Create a new in-memory repository object with\n the given type.\n\n The object's attributes can be filled in using the\n corresponding setter methods.\n\n The object will be written back to given git_repository\n when the git_object_write() function is called; objects\n cannot be written to disk until all their main\n attributes have been properly filled.\n\n Objects are instantiated with no SHA1 id; their id\n will be automatically generated when writing to the\n repository.\n\n @param object pointer to the new object\n @parem repo Repository where the object belongs\n @param type Type of the object to be created\n @return the new object\n\n","lineto":101,"description":"Create a new in-memory repository object with the given type."},"git_tag_set_name":{"return":{"type":"void","comment":""},"group":"tag","file":"tag.h","sig":"git_tag *::const char *","comments":"","argline":"git_tag *tag, const char *name","line":95,"args":[{"type":"git_tag *","comment":"The tag to modify","name":"tag"},{"type":"const char *","comment":"the new name for the tag","name":"name"}],"rawComments":"\n Set the name of a tag\n @param tag The tag to modify\n @param name the new name for the tag\n\n","lineto":100,"description":"Set the name of a tag"},"git_blob_writefile":{"return":{"type":"int","comment":""},"group":"blob","file":"blob.h","sig":"git_oid *::git_repository *::const char *","comments":"","argline":"git_oid *written_id, git_repository *repo, const char *path","line":86,"args":[{"type":"git_oid *","comment":"return the id of the written blob","name":"written_id"},{"type":"git_repository *","comment":"repository where the blob will be written","name":"repo"},{"type":"const char *","comment":"file from which the blob will be created","name":"path"}],"rawComments":"\n Read a file from the working folder of a repository\n and write it to the Object Database as a loose blob,\n if such doesn't exist yet.\n\n @param written_id return the id of the written blob\n @param repo repository where the blob will be written\n @param path file from which the blob will be created\n\n","lineto":95,"description":"Read a file from the working folder of a repository and write it to the Object Database as a loose blob, if such doesn't exist yet."},"git_index_get":{"return":{"type":"git_index_entry *","comment":"a pointer to the entry; NULL if out of bounds"},"group":"index","file":"index.h","sig":"git_index *::int","comments":"This entry can be modified, and the changes will be written\n back to disk on the next write() call.","argline":"git_index *index, int n","line":149,"args":[{"type":"git_index *","comment":"an existing index object","name":"index"},{"type":"int","comment":"the position of the entry","name":"n"}],"rawComments":"\n Get a pointer to one of the entries in the index\n\n This entry can be modified, and the changes will be written\n back to disk on the next write() call.\n\n @param index an existing index object\n @param n the position of the entry\n @return a pointer to the entry; NULL if out of bounds\n\n","lineto":159,"description":"Get a pointer to one of the entries in the index"},"git_commit_set_committer":{"return":{"type":"void","comment":""},"group":"commit","file":"commit.h","sig":"git_commit *::const char *::const char *::time_t","comments":"","argline":"git_commit *commit, const char *name, const char *email, time_t time","line":110,"args":[{"type":"git_commit *","comment":"the commit object","name":"commit"},{"type":"const char *","comment":"name of the new committer","name":"name"},{"type":"const char *","comment":"email of the new committer","name":"email"},{"type":"time_t","comment":"time when the committer committed the commit","name":"time"}],"rawComments":"\n Set the committer of a commit\n @param commit the commit object\n @param name name of the new committer\n @param email email of the new committer\n @param time time when the committer committed the commit\n\n","lineto":117,"description":"Set the committer of a commit"},"git_revwalk_free":{"return":{"type":"void","comment":""},"group":"revwalk","file":"revwalk.h","sig":"git_revwalk *","comments":"","argline":"git_revwalk *walk","line":95,"args":[{"type":"git_revwalk *","comment":"traversal handle to close. If NULL nothing occurs.","name":"walk"}],"rawComments":"\n Free a revwalk previously allocated.\n @param walk traversal handle to close. If NULL nothing occurs.\n\n","lineto":99,"description":"Free a revwalk previously allocated."},"git_index_add":{"return":{"type":"int","comment":"0 on success, otherwise an error code"},"group":"index","file":"index.h","sig":"git_index *::const char *::int","comments":"","argline":"git_index *index, const char *path, int stage","line":117,"args":[{"type":"git_index *","comment":"an existing index object","name":"index"},{"type":"const char *","comment":"filename to add","name":"path"},{"type":"int","comment":"stage for the entry","name":"stage"}],"rawComments":"\n Add or update an index entry from a file in disk.\n\n @param index an existing index object\n @param path filename to add\n @param stage stage for the entry\n @return 0 on success, otherwise an error code\n\n","lineto":125,"description":"Add or update an index entry from a file in disk."},"git_tree_entry_name":{"return":{"type":"const char *","comment":"the name of the file"},"group":"tree","file":"tree.h","sig":"git_tree_entry *","comments":"","argline":"git_tree_entry *entry","line":87,"args":[{"type":"git_tree_entry *","comment":"a tree entry","name":"entry"}],"rawComments":"\n Get the filename of a tree entry\n @param entry a tree entry\n @return the name of the file\n\n","lineto":92,"description":"Get the filename of a tree entry"},"git_tag_target":{"return":{"type":"const git_object *","comment":"reference to a repository object"},"group":"tag","file":"tag.h","sig":"git_tag *","comments":"","argline":"git_tag *t","line":53,"args":[{"type":"git_tag *","comment":"","name":"t"}],"rawComments":"\n Get the tagged object of a tag\n @param tag a previously loaded tag.\n @return reference to a repository object\n\n","lineto":58,"description":"Get the tagged object of a tag @param tag a previously loaded tag."},"__attribute__":{"return":{"type":"","comment":""},"file":"common.h","sig":"","comments":"","argline":"(visibility(\"default\"))","line":26,"args":[{"type":"","comment":"","name":"(visibility(\"default\"))"}],"rawComments":" Declare a public TLS symbol exported for application use. ","lineto":31,"description":"Declare a public TLS symbol exported for application use."},"git_commit_add_parent":{"return":{"type":"void","comment":""},"group":"commit","file":"commit.h","sig":"git_commit *::git_commit *","comments":"","argline":"git_commit *commit, git_commit *new_parent","line":96,"args":[{"type":"git_commit *","comment":"the commit object","name":"commit"},{"type":"git_commit *","comment":"the new commit which will be a parent","name":"new_parent"}],"rawComments":"\n Add a new parent commit to an existing commit\n @param commit the commit object\n @param new_parent the new commit which will be a parent\n\n","lineto":101,"description":"Add a new parent commit to an existing commit"},"git_commit_time":{"return":{"type":"time_t","comment":"the time of a commit"},"group":"commit","file":"commit.h","sig":"git_commit *","comments":"","argline":"git_commit *commit","line":68,"args":[{"type":"git_commit *","comment":"a previously loaded commit.","name":"commit"}],"rawComments":"\n Get the commit time (i.e. committer time) of a commit.\n @param commit a previously loaded commit.\n @return the time of a commit\n\n","lineto":73,"description":"Get the commit time (i.e. committer time) of a commit."},"git_tree_entry_attributes":{"return":{"type":"unsigned int","comment":"attributes as an integer"},"group":"tree","file":"tree.h","sig":"git_tree_entry *","comments":"","argline":"git_tree_entry *entry","line":80,"args":[{"type":"git_tree_entry *","comment":"a tree entry","name":"entry"}],"rawComments":"\n Get the UNIX file attributes of a tree entry\n @param entry a tree entry\n @return attributes as an integer\n\n","lineto":85,"description":"Get the UNIX file attributes of a tree entry"},"git_object_free":{"return":{"type":"void","comment":""},"group":"object","file":"repository.h","sig":"git_object *","comments":"Repository objects are managed automatically by the library,\n but this method can be used to force freeing one of the\n objects.\n\n Careful: freeing objects in the middle of a repository\n traversal will most likely cause errors.","argline":"git_object *object","line":149,"args":[{"type":"git_object *","comment":"the object to free","name":"object"}],"rawComments":"\n Free a reference to one of the objects in the repository.\n\n Repository objects are managed automatically by the library,\n but this method can be used to force freeing one of the\n objects.\n\n Careful: freeing objects in the middle of a repository\n traversal will most likely cause errors.\n\n @param object the object to free\n\n","lineto":161,"description":"Free a reference to one of the objects in the repository."},"git_oid_to_string":{"return":{"type":"char *","comment":"the out buffer pointer, assuming no input parameter errors, otherwise a pointer to an empty string."},"group":"oid","file":"oid.h","sig":"char *::size_t::const git_oid *","comments":"","argline":"char *out, size_t n, const git_oid *oid","line":82,"args":[{"type":"char *","comment":"the buffer into which the oid string is output.","name":"out"},{"type":"size_t","comment":"the size of the out buffer.","name":"n"},{"type":"const git_oid *","comment":"the oid structure to format.","name":"oid"}],"rawComments":"\n Format a git_oid into a buffer as a hex format c-string.\n <p>\n If the buffer is smaller than GIT_OID_HEXSZ+1, then the resulting\n oid c-string will be truncated to n-1 characters. If there are\n any input parameter errors (out == NULL, n == 0, oid == NULL),\n then a pointer to an empty string is returned, so that the return\n value can always be printed.\n\n @param out the buffer into which the oid string is output.\n @param n the size of the out buffer.\n @param oid the oid structure to format.\n @return the out buffer pointer, assuming no input parameter\n errors, otherwise a pointer to an empty string.\n\n","lineto":97,"description":"Format a git_oid into a buffer as a hex format c-string. <p> If the buffer is smaller than GIT_OID_HEXSZ+1, then the resulting oid c-string will be truncated to n-1 characters. If there are any input parameter errors (out == NULL, n == 0, oid == NULL), then a pointer to an empty string is returned, so that the return value can always be printed."},"git_tree_entry_byindex":{"return":{"type":"git_tree_entry *","comment":"the tree entry; NULL if not found"},"group":"tree","file":"tree.h","sig":"git_tree *::int","comments":"","argline":"git_tree *tree, int idx","line":72,"args":[{"type":"git_tree *","comment":"a previously loaded tree.","name":"tree"},{"type":"int","comment":"the position in the entry list","name":"idx"}],"rawComments":"\n Lookup a tree entry by its position in the tree\n @param tree a previously loaded tree.\n @param idx the position in the entry list\n @return the tree entry; NULL if not found\n\n","lineto":78,"description":"Lookup a tree entry by its position in the tree"},"git_index_free":{"return":{"type":"void","comment":""},"group":"index","file":"index.h","sig":"git_index *","comments":"","argline":"git_index *index","line":82,"args":[{"type":"git_index *","comment":"an existing index object","name":"index"}],"rawComments":"\n Free an existing index object.\n\n @param index an existing index object\n\n","lineto":87,"description":"Free an existing index object."},"git_blob_lookup":{"return":{"type":"int","comment":"0 on success; error code otherwise"},"group":"blob","file":"blob.h","sig":"git_blob **::git_repository *::const git_oid *","comments":"","argline":"git_blob **blob, git_repository *repo, const git_oid *id","line":19,"args":[{"type":"git_blob **","comment":"pointer to the looked up blob","name":"blob"},{"type":"git_repository *","comment":"the repo to use when locating the blob.","name":"repo"},{"type":"const git_oid *","comment":"identity of the blob to locate.","name":"id"}],"rawComments":"\n Lookup a blob object from a repository.\n The generated blob object is owned by the revision\n repo and shall not be freed by the user.\n\n @param blob pointer to the looked up blob\n @param repo the repo to use when locating the blob.\n @param id identity of the blob to locate.\n @return 0 on success; error code otherwise\n\n","lineto":29,"description":"Lookup a blob object from a repository. The generated blob object is owned by the revision repo and shall not be freed by the user."},"git_index_read":{"return":{"type":"int","comment":"0 on success, otherwise an error code"},"group":"index","file":"index.h","sig":"git_index *","comments":"","argline":"git_index *index","line":89,"args":[{"type":"git_index *","comment":"an existing index object","name":"index"}],"rawComments":"\n Update the contents of an existing index object in memory\n by reading from the hard disk.\n\n @param index an existing index object\n @return 0 on success, otherwise an error code\n\n","lineto":96,"description":"Update the contents of an existing index object in memory by reading from the hard disk."},"git_index_entrycount":{"return":{"type":"unsigned int","comment":"integer of count of current entries"},"group":"index","file":"index.h","sig":"git_index *","comments":"","argline":"git_index *index","line":161,"args":[{"type":"git_index *","comment":"an existing index object","name":"index"}],"rawComments":"\n Get the count of entries currently in the index\n\n @param index an existing index object\n @return integer of count of current entries\n\n","lineto":167,"description":"Get the count of entries currently in the index"},"git_obj_type_to_string":{"return":{"type":"const char *","comment":"the corresponding string representation."},"group":"obj","file":"odb.h","sig":"git_otype","comments":"The result is a pointer to a string in static memory and\n should not be free()'ed.","argline":"git_otype type","line":145,"args":[{"type":"git_otype","comment":"object type to convert.","name":"type"}],"rawComments":"\n Convert an object type to it's string representation.\n\n The result is a pointer to a string in static memory and\n should not be free()'ed.\n\n @param type object type to convert.\n @return the corresponding string representation.\n\n","lineto":154,"description":"Convert an object type to it's string representation."},"git_tree_new":{"return":{"type":"int","comment":"0 on success; error code otherwise"},"group":"tree","file":"tree.h","sig":"git_tree **::git_repository *","comments":"The tree object must be manually filled using\n setter methods before it can be written to its\n repository.","argline":"git_tree **tree, git_repository *repo","line":36,"args":[{"type":"git_tree **","comment":"pointer to the new tree","name":"tree"},{"type":"git_repository *","comment":"The repository where the object will reside","name":"repo"}],"rawComments":"\n Create a new in-memory git_tree.\n\n The tree object must be manually filled using\n setter methods before it can be written to its\n repository.\n\n @param tree pointer to the new tree\n @param repo The repository where the object will reside\n @return 0 on success; error code otherwise\n\n","lineto":47,"description":"Create a new in-memory git_tree."},"git_revwalk_next":{"return":{"type":"git_commit *","comment":"next commit; NULL if there is no more output."},"group":"revwalk","file":"revwalk.h","sig":"git_revwalk *","comments":"","argline":"git_revwalk *walk","line":79,"args":[{"type":"git_revwalk *","comment":"the walker to pop the commit from.","name":"walk"}],"rawComments":"\n Get the next commit from the revision traversal.\n @param walk the walker to pop the commit from.\n @return next commit; NULL if there is no more output.\n\n","lineto":84,"description":"Get the next commit from the revision traversal."},"git_repository_free":{"return":{"type":"void","comment":""},"group":"repository","file":"repository.h","sig":"git_repository *","comments":"","argline":"git_repository *repo","line":163,"args":[{"type":"git_repository *","comment":"repository handle to close. If NULL nothing occurs.","name":"repo"}],"rawComments":"\n Free a previously allocated repository\n @param repo repository handle to close. If NULL nothing occurs.\n\n","lineto":167,"description":"Free a previously allocated repository"},"git_object_owner":{"return":{"type":"git_repository *","comment":"the repository who owns this object"},"group":"object","file":"repository.h","sig":"git_object *","comments":"","argline":"git_object *obj","line":141,"args":[{"type":"git_object *","comment":"the object","name":"obj"}],"rawComments":"\n Get the repository that owns this object\n\n @param obj the object\n @return the repository who owns this object\n\n","lineto":147,"description":"Get the repository that owns this object"},"git_commit_lookup":{"return":{"type":"int","comment":"0 on success; error code otherwise"},"group":"commit","file":"commit.h","sig":"git_commit **::git_repository *::const git_oid *","comments":"","argline":"git_commit **commit, git_repository *repo, const git_oid *id","line":21,"args":[{"type":"git_commit **","comment":"pointer to the looked up commit","name":"commit"},{"type":"git_repository *","comment":"the repo to use when locating the commit.","name":"repo"},{"type":"const git_oid *","comment":"identity of the commit to locate. If the object is an annotated tag it will be peeled back to the commit.","name":"id"}],"rawComments":"\n Lookup a commit object from a repository.\n The generated commit object is owned by the revision\n repo and shall not be freed by the user.\n\n @param commit pointer to the looked up commit\n @param repo the repo to use when locating the commit.\n @param id identity of the commit to locate. If the object is\n an annotated tag it will be peeled back to the commit.\n @return 0 on success; error code otherwise\n\n","lineto":32,"description":"Lookup a commit object from a repository. The generated commit object is owned by the revision repo and shall not be freed by the user."},"git_blob_rawcontent":{"return":{"type":"const char *","comment":"the pointer; NULL if the blob has no contents"},"group":"blob","file":"blob.h","sig":"git_blob *","comments":"A pointer to the raw content of a blob is returned;\n this pointer is owned internally by the object and shall\n not be free'd. The pointer may be invalidated at a later\n time (e.g. when changing the contents of the blob).","argline":"git_blob *blob","line":65,"args":[{"type":"git_blob *","comment":"pointer to the blob","name":"blob"}],"rawComments":"\n Get a read-only buffer with the raw content of a blob.\n\n A pointer to the raw content of a blob is returned;\n this pointer is owned internally by the object and shall\n not be free'd. The pointer may be invalidated at a later\n time (e.g. when changing the contents of the blob).\n\n @param blob pointer to the blob\n @return the pointer; NULL if the blob has no contents\n\n","lineto":76,"description":"Get a read-only buffer with the raw content of a blob."},"git_person_time":{"return":{"type":"git_person *person); const char *git_person_email(git_person *person","comment":""},"group":"person","file":"common.h","sig":"git_person *","comments":"","argline":"git_person *person","line":124,"args":[{"type":"git_person *","comment":"","name":"person"}],"rawComments":" Parsed representation of a person ","lineto":129,"description":"Parsed representation of a person"},"deflateBound":{"return":{"type":"size_t","comment":"maximum length of the compressed data."},"group":"zlib","file":"zlib.h","sig":"z_streamp::size_t","comments":"This is a stub function used when zlib does not supply the\n deflateBound() implementation itself.","argline":"z_streamp stream, size_t s","line":17,"args":[{"type":"z_streamp","comment":"the stream pointer.","name":"stream"},{"type":"size_t","comment":"total length of the source data (in bytes).","name":"s"}],"rawComments":"\n deflateBound returns an upper bound on the compressed size.\n\n This is a stub function used when zlib does not supply the\n deflateBound() implementation itself.\n\n @param stream the stream pointer.\n @param s total length of the source data (in bytes).\n @return maximum length of the compressed data.\n\n","lineto":30,"description":"deflateBound returns an upper bound on the compressed size."},"git_tag_name":{"return":{"type":"const char *","comment":"name of the tag"},"group":"tag","file":"tag.h","sig":"git_tag *","comments":"","argline":"git_tag *t","line":67,"args":[{"type":"git_tag *","comment":"","name":"t"}],"rawComments":"\n Get the name of a tag\n @param tag a previously loaded tag.\n @return name of the tag\n\n","lineto":72,"description":"Get the name of a tag @param tag a previously loaded tag."},"git_revwalk_new":{"return":{"type":"int","comment":"0 on success; error code otherwise"},"group":"revwalk","file":"revwalk.h","sig":"git_revwalk **::git_repository *","comments":"","argline":"git_revwalk **walker, git_repository *repo","line":48,"args":[{"type":"git_revwalk **","comment":"pointer to the new revision walker","name":"walker"},{"type":"git_repository *","comment":"the repo to walk through","name":"repo"}],"rawComments":"\n Allocate a new revision walker to iterate through a repo.\n\n @param walker pointer to the new revision walker\n @param repo the repo to walk through\n @return 0 on success; error code otherwise\n\n","lineto":55,"description":"Allocate a new revision walker to iterate through a repo."},"GIT_EXTERN_TLS":{"return":{"type":"","comment":""},"group":"GIT","file":"errors.h","sig":"int) git_errno; GIT_EXTERN(int *)","comments":"","argline":"int) git_errno; GIT_EXTERN(int *) git__errno_storage(void","line":14,"args":[{"type":"int) git_errno; GIT_EXTERN(int *)","comment":"","name":"git__errno_storage(void"}],"rawComments":" The git errno. ","lineto":20,"description":"The git errno."},"git_index_open_inrepo":{"return":{"type":"int","comment":"0 on success; error code otherwise"},"group":"index","file":"index.h","sig":"git_index **::git_repository *","comments":"@param index_path the path to the index file in disk","argline":"git_index **index, git_repository *repo","line":63,"args":[{"type":"git_index **","comment":"","name":"index"},{"type":"git_repository *","comment":"the git repo which owns the index","name":"repo"}],"rawComments":"\n Open the Index inside the git repository pointed\n by 'repo'.\n\n @param repo the git repo which owns the index\n @param index_path the path to the index file in disk\n @return 0 on success; error code otherwise\n\n","lineto":71,"description":"Open the Index inside the git repository pointed by 'repo'."},"git_commit_committer":{"return":{"type":"const git_person *","comment":"the committer of a commit"},"group":"commit","file":"commit.h","sig":"git_commit *","comments":"","argline":"git_commit *commit","line":75,"args":[{"type":"git_commit *","comment":"a previously loaded commit.","name":"commit"}],"rawComments":"\n Get the committer of a commit.\n @param commit a previously loaded commit.\n @return the committer of a commit\n\n","lineto":80,"description":"Get the committer of a commit."},"git_commit_tree":{"return":{"type":"const git_tree *","comment":"the tree of a commit"},"group":"commit","file":"commit.h","sig":"git_commit *","comments":"","argline":"git_commit *commit","line":89,"args":[{"type":"git_commit *","comment":"a previously loaded commit.","name":"commit"}],"rawComments":"\n Get the tree pointed to by a commit.\n @param commit a previously loaded commit.\n @return the tree of a commit\n\n","lineto":94,"description":"Get the tree pointed to by a commit."},"git_odb_close":{"return":{"type":"void","comment":""},"group":"odb","file":"odb.h","sig":"git_odb *","comments":"","argline":"git_odb *db","line":30,"args":[{"type":"git_odb *","comment":"database pointer to close. If NULL no action is taken.","name":"db"}],"rawComments":"\n Close an open object database.\n @param db database pointer to close. If NULL no action is taken.\n\n","lineto":34,"description":"Close an open object database."},"git_oid_fmt":{"return":{"type":"void","comment":""},"group":"oid","file":"oid.h","sig":"char *::const git_oid *","comments":"","argline":"char *str, const git_oid *oid","line":48,"args":[{"type":"char *","comment":"output hex string; must be pointing at the start of the hex sequence and have at least the number of bytes needed for an oid encoded in hex (40 bytes). Only the oid digits are written; a '\\\\0' terminator must be added by the caller if it is required.","name":"str"},{"type":"const git_oid *","comment":"oid structure to format.","name":"oid"}],"rawComments":"\n Format a git_oid into a hex string.\n @param str output hex string; must be pointing at the start of\n the hex sequence and have at least the number of bytes\n needed for an oid encoded in hex (40 bytes). Only the\n oid digits are written; a '\\\\0' terminator must be added\n by the caller if it is required.\n @param oid oid structure to format.\n\n","lineto":57,"description":"Format a git_oid into a hex string."},"git_commit_set_author":{"return":{"type":"void","comment":""},"group":"commit","file":"commit.h","sig":"git_commit *::const char *::const char *::time_t","comments":"","argline":"git_commit *commit, const char *name, const char *email, time_t time","line":119,"args":[{"type":"git_commit *","comment":"the commit object","name":"commit"},{"type":"const char *","comment":"name of the new author","name":"name"},{"type":"const char *","comment":"email of the new author","name":"email"},{"type":"time_t","comment":"time when the author created the commit","name":"time"}],"rawComments":"\n Set the author of a commit\n @param commit the commit object\n @param name name of the new author\n @param email email of the new author\n @param time time when the author created the commit\n\n","lineto":126,"description":"Set the author of a commit"},"git_tree_entry_set_attributes":{"return":{"type":"void","comment":""},"group":"tree","file":"tree.h","sig":"git_tree_entry *::int","comments":"This will mark the tree that contains the entry as modified;\n the modified entry will be written back to disk on the next git_object_write()\n\n @param oid new attributes for the entry","argline":"git_tree_entry *entry, int attr","line":172,"args":[{"type":"git_tree_entry *","comment":"Entry object which will be modified","name":"entry"},{"type":"int","comment":"","name":"attr"}],"rawComments":"\n Change the attributes of a tree entry.\n\n This will mark the tree that contains the entry as modified;\n the modified entry will be written back to disk on the next git_object_write()\n\n @param entry Entry object which will be modified\n @param oid new attributes for the entry\n\n","lineto":181,"description":"Change the attributes of a tree entry."},"git_tree_entry_id":{"return":{"type":"const git_oid *","comment":"the oid of the object"},"group":"tree","file":"tree.h","sig":"git_tree_entry *","comments":"","argline":"git_tree_entry *entry","line":94,"args":[{"type":"git_tree_entry *","comment":"a tree entry","name":"entry"}],"rawComments":"\n Get the id of the object pointed by the entry\n @param entry a tree entry\n @return the oid of the object\n\n","lineto":99,"description":"Get the id of the object pointed by the entry"},"git_tag_set_target":{"return":{"type":"void","comment":""},"group":"tag","file":"tag.h","sig":"git_tag *::git_object *","comments":"","argline":"git_tag *tag, git_object *target","line":88,"args":[{"type":"git_tag *","comment":"The tag to modify","name":"tag"},{"type":"git_object *","comment":"the new tagged target","name":"target"}],"rawComments":"\n Set the target of a tag (i.e. the object that the tag points to)\n @param tag The tag to modify\n @param target the new tagged target\n\n","lineto":93,"description":"Set the target of a tag (i.e. the object that the tag points to)"},"git_tag_new":{"return":{"type":"int","comment":"0 on success; error code otherwise"},"group":"tag","file":"tag.h","sig":"git_tag **::git_repository *","comments":"The tag object must be manually filled using\n setter methods before it can be written to its\n repository.","argline":"git_tag **tag, git_repository *repo","line":33,"args":[{"type":"git_tag **","comment":"pointer to the new tag","name":"tag"},{"type":"git_repository *","comment":"The repository where the object will reside","name":"repo"}],"rawComments":"\n Create a new in-memory git_tag.\n\n The tag object must be manually filled using\n setter methods before it can be written to its\n repository.\n\n @param tag pointer to the new tag\n @param repo The repository where the object will reside\n @return 0 on success; error code otherwise\n\n","lineto":44,"description":"Create a new in-memory git_tag."},"git_odb_read_header":{"return":{"type":"int","comment":""},"group":"odb","file":"odb.h","sig":"git_rawobj *::git_odb *::const git_oid *","comments":"Only the 'type' and 'len' fields of the git_rawobj structure\n are filled. The 'data' pointer will always be NULL.\n\n The raw object pointed by 'out' doesn't need to be manually\n closed with git_obj_close().\n\n @return\n - GIT_SUCCESS if the object was read;\n - GIT_ENOTFOUND if the object is not in the database.","argline":"git_rawobj *out, git_odb *db, const git_oid *id","line":71,"args":[{"type":"git_rawobj *","comment":"object descriptor to populate upon reading.","name":"out"},{"type":"git_odb *","comment":"database to search for the object in.","name":"db"},{"type":"const git_oid *","comment":"identity of the object to read.","name":"id"}],"rawComments":"\n Read the header of an object from the database, without\n reading its full contents.\n\n Only the 'type' and 'len' fields of the git_rawobj structure\n are filled. The 'data' pointer will always be NULL.\n\n The raw object pointed by 'out' doesn't need to be manually\n closed with git_obj_close().\n\n @param out object descriptor to populate upon reading.\n @param db database to search for the object in.\n @param id identity of the object to read.\n @return\n - GIT_SUCCESS if the object was read;\n - GIT_ENOTFOUND if the object is not in the database.\n\n","lineto":88,"description":"Read the header of an object from the database, without reading its full contents."},"git_oid_mkstr":{"return":{"type":"int","comment":"GIT_SUCCESS if valid; GIT_ENOTOID on failure."},"group":"oid","file":"oid.h","sig":"git_oid *::const char *","comments":"","argline":"git_oid *out, const char *str","line":28,"args":[{"type":"git_oid *","comment":"oid structure the result is written into.","name":"out"},{"type":"const char *","comment":"input hex string; must be pointing at the start of the hex sequence and have at least the number of bytes needed for an oid encoded in hex (40 bytes).","name":"str"}],"rawComments":"\n Parse a hex formatted object id into a git_oid.\n @param out oid structure the result is written into.\n @param str input hex string; must be pointing at the start of\n the hex sequence and have at least the number of bytes\n needed for an oid encoded in hex (40 bytes).\n @return GIT_SUCCESS if valid; GIT_ENOTOID on failure.\n\n","lineto":36,"description":"Parse a hex formatted object id into a git_oid."},"git_repository_lookup":{"return":{"type":"int","comment":"a reference to the object"},"group":"repository","file":"repository.h","sig":"git_object **::git_repository *::const git_oid *::git_otype","comments":"The generated reference is owned by the repository and\n should not be freed by the user.\n\n The 'type' parameter must match the type of the object\n in the odb; the method will fail otherwise.\n The special value 'GIT_OBJ_ANY' may be passed to let\n the method guess the object's type.","argline":"git_object **object, git_repository *repo, const git_oid *id, git_otype type","line":44,"args":[{"type":"git_object **","comment":"pointer to the looked-up object","name":"object"},{"type":"git_repository *","comment":"the repository to look up the object","name":"repo"},{"type":"const git_oid *","comment":"the unique identifier for the object","name":"id"},{"type":"git_otype","comment":"the type of the object","name":"type"}],"rawComments":"\n Lookup a reference to one of the objects in the repostory.\n\n The generated reference is owned by the repository and\n should not be freed by the user.\n\n The 'type' parameter must match the type of the object\n in the odb; the method will fail otherwise.\n The special value 'GIT_OBJ_ANY' may be passed to let\n the method guess the object's type.\n\n @param object pointer to the looked-up object\n @param repo the repository to look up the object\n @param id the unique identifier for the object\n @param type the type of the object\n @return a reference to the object\n\n","lineto":61,"description":"Lookup a reference to one of the objects in the repostory."},"git_commit_message":{"return":{"type":"const char *","comment":"the message of a commit"},"group":"commit","file":"commit.h","sig":"git_commit *","comments":"","argline":"git_commit *commit","line":61,"args":[{"type":"git_commit *","comment":"a previously loaded commit.","name":"commit"}],"rawComments":"\n Get the full message of a commit.\n @param commit a previously loaded commit.\n @return the message of a commit\n\n","lineto":66,"description":"Get the full message of a commit."},"git_blob_rawsize":{"return":{"type":"int","comment":"size on bytes"},"group":"blob","file":"blob.h","sig":"git_blob *","comments":"","argline":"git_blob *blob","line":78,"args":[{"type":"git_blob *","comment":"pointer to the blob","name":"blob"}],"rawComments":"\n Get the size in bytes of the contents of a blob\n\n @param blob pointer to the blob\n @return size on bytes\n\n","lineto":84,"description":"Get the size in bytes of the contents of a blob"},"git_tree_entrycount":{"return":{"type":"size_t","comment":"the number of entries in the tree"},"group":"tree","file":"tree.h","sig":"git_tree *","comments":"","argline":"git_tree *tree","line":57,"args":[{"type":"git_tree *","comment":"a previously loaded tree.","name":"tree"}],"rawComments":"\n Get the number of entries listed in a tree\n @param tree a previously loaded tree.\n @return the number of entries in the tree\n\n","lineto":62,"description":"Get the number of entries listed in a tree"},"git_tag_message":{"return":{"type":"const char *","comment":"message of the tag"},"group":"tag","file":"tag.h","sig":"git_tag *","comments":"","argline":"git_tag *t","line":81,"args":[{"type":"git_tag *","comment":"","name":"t"}],"rawComments":"\n Get the message of a tag\n @param tag a previously loaded tag.\n @return message of the tag\n\n","lineto":86,"description":"Get the message of a tag @param tag a previously loaded tag."},"git_revwalk_push":{"return":{"type":"int","comment":""},"group":"revwalk","file":"revwalk.h","sig":"git_revwalk *::git_commit *","comments":"@param walker the walker being used for the traversal.","argline":"git_revwalk *walk, git_commit *commit","line":63,"args":[{"type":"git_revwalk *","comment":"","name":"walk"},{"type":"git_commit *","comment":"the commit to start from.","name":"commit"}],"rawComments":"\n Mark a commit to start traversal from.\n The commit object must belong to the repo which is being walked through.\n\n @param walker the walker being used for the traversal.\n @param commit the commit to start from.\n\n","lineto":70,"description":"Mark a commit to start traversal from. The commit object must belong to the repo which is being walked through."},"git_index_remove":{"return":{"type":"int","comment":"0 on success, otherwise an error code"},"group":"index","file":"index.h","sig":"git_index *::int","comments":"","argline":"git_index *index, int position","line":127,"args":[{"type":"git_index *","comment":"an existing index object","name":"index"},{"type":"int","comment":"position of the entry to remove","name":"position"}],"rawComments":"\n Remove an entry from the index\n\n @param index an existing index object\n @param position position of the entry to remove\n @return 0 on success, otherwise an error code\n\n","lineto":134,"description":"Remove an entry from the index"},"git_oid_mkraw":{"return":{"type":"void","comment":""},"group":"oid","file":"oid.h","sig":"git_oid *::const unsigned char *","comments":"","argline":"git_oid *out, const unsigned char *raw","line":38,"args":[{"type":"git_oid *","comment":"oid structure the result is written into.","name":"out"},{"type":"const unsigned char *","comment":"the raw input bytes to be copied.","name":"raw"}],"rawComments":"\n Copy an already raw oid into a git_oid structure.\n @param out oid structure the result is written into.\n @param raw the raw input bytes to be copied.\n\n","lineto":46,"description":"Copy an already raw oid into a git_oid structure."},"git_index_insert":{"return":{"type":"int","comment":"0 on success, otherwise an error code"},"group":"index","file":"index.h","sig":"git_index *::const git_index_entry *","comments":"","argline":"git_index *index, const git_index_entry *source_entry","line":136,"args":[{"type":"git_index *","comment":"an existing index object","name":"index"},{"type":"const git_index_entry *","comment":"new entry object","name":"source_entry"}],"rawComments":"\n Insert an entry into the index.\n A full copy (including the 'path' string) of the given\n 'source_entry' will be inserted on the index; if the index\n already contains an entry for the same path, the entry\n will be updated.\n\n @param index an existing index object\n @param source_entry new entry object\n @return 0 on success, otherwise an error code\n\n","lineto":147,"description":"Insert an entry into the index. A full copy (including the 'path' string) of the given 'source_entry' will be inserted on the index; if the index already contains an entry for the same path, the entry will be updated."},"git_commit_set_tree":{"return":{"type":"void","comment":""},"group":"commit","file":"commit.h","sig":"git_commit *::git_tree *","comments":"","argline":"git_commit *commit, git_tree *tree","line":128,"args":[{"type":"git_commit *","comment":"the commit object","name":"commit"},{"type":"git_tree *","comment":"the new tree","name":"tree"}],"rawComments":"\n Set the tree which is pointed to by a commit\n @param commit the commit object\n @param tree the new tree\n\n","lineto":133,"description":"Set the tree which is pointed to by a commit"},"git_obj_hash":{"return":{"type":"int","comment":""},"group":"obj","file":"odb.h","sig":"git_oid *::git_rawobj *","comments":"The input obj must be a valid loose object type and the data\n pointer must not be NULL, unless the len field is also zero.\n\n @return\n - GIT_SUCCESS if the object-ID was correctly determined.\n - GIT_ERROR if the given object is malformed.","argline":"git_oid *id, git_rawobj *obj","line":173,"args":[{"type":"git_oid *","comment":"the resulting object-ID.","name":"id"},{"type":"git_rawobj *","comment":"the object whose hash is to be determined.","name":"obj"}],"rawComments":"\n Determine the object-ID (sha1 hash) of the given git_rawobj.\n\n The input obj must be a valid loose object type and the data\n pointer must not be NULL, unless the len field is also zero.\n\n @param id the resulting object-ID.\n @param obj the object whose hash is to be determined.\n @return\n - GIT_SUCCESS if the object-ID was correctly determined.\n - GIT_ERROR if the given object is malformed.\n\n","lineto":185,"description":"Determine the object-ID (sha1 hash) of the given git_rawobj."},"git_commit_new":{"return":{"type":"int","comment":"0 on success; error code otherwise"},"group":"commit","file":"commit.h","sig":"git_commit **::git_repository *","comments":"The commit object must be manually filled using\n setter methods before it can be written to its\n repository.","argline":"git_commit ** commit, git_repository *repo","line":34,"args":[{"type":"git_commit **","comment":"pointer to the new commit","name":"commit"},{"type":"git_repository *","comment":"The repository where the object will reside","name":"repo"}],"rawComments":"\n Create a new in-memory git_commit.\n\n The commit object must be manually filled using\n setter methods before it can be written to its\n repository.\n\n @param commit pointer to the new commit\n @param repo The repository where the object will reside\n @return 0 on success; error code otherwise\n\n","lineto":45,"description":"Create a new in-memory git_commit."},"git_tree_id":{"return":{"type":"const git_oid *","comment":"object identity for the tree."},"group":"tree","file":"tree.h","sig":"git_tree *","comments":"","argline":"git_tree *tree","line":49,"args":[{"type":"git_tree *","comment":"a previously loaded tree.","name":"tree"}],"rawComments":"\n Get the id of a tree.\n @param tree a previously loaded tree.\n @return object identity for the tree.\n\n","lineto":54,"description":"Get the id of a tree."},"git_tag_set_message":{"return":{"type":"void","comment":""},"group":"tag","file":"tag.h","sig":"git_tag *::const char *","comments":"","argline":"git_tag *tag, const char *message","line":111,"args":[{"type":"git_tag *","comment":"The tag to modify","name":"tag"},{"type":"const char *","comment":"the new tagger for the tag","name":"message"}],"rawComments":"\n Set the message of a tag\n @param tag The tag to modify\n @param message the new tagger for the tag\n\n","lineto":116,"description":"Set the message of a tag"},"git_tag_tagger":{"return":{"type":"const git_person *","comment":"reference to the tag's author"},"group":"tag","file":"tag.h","sig":"git_tag *","comments":"","argline":"git_tag *t","line":74,"args":[{"type":"git_tag *","comment":"","name":"t"}],"rawComments":"\n Get the tagger (author) of a tag\n @param tag a previously loaded tag.\n @return reference to the tag's author\n\n","lineto":79,"description":"Get the tagger (author) of a tag @param tag a previously loaded tag."},"git_tag_lookup":{"return":{"type":"int","comment":"0 on success; error code otherwise"},"group":"tag","file":"tag.h","sig":"git_tag **::git_repository *::const git_oid *","comments":"","argline":"git_tag **tag, git_repository *repo, const git_oid *id","line":21,"args":[{"type":"git_tag **","comment":"pointer to the looked up tag","name":"tag"},{"type":"git_repository *","comment":"the repo to use when locating the tag.","name":"repo"},{"type":"const git_oid *","comment":"identity of the tag to locate.","name":"id"}],"rawComments":"\n Lookup a tag object from the repository.\n The generated tag object is owned by the revision\n repo and shall not be freed by the user.\n\n @param tag pointer to the looked up tag\n @param repo the repo to use when locating the tag.\n @param id identity of the tag to locate.\n @return 0 on success; error code otherwise\n\n","lineto":31,"description":"Lookup a tag object from the repository. The generated tag object is owned by the revision repo and shall not be freed by the user."},"git_obj_close":{"return":{"type":"void","comment":""},"group":"obj","file":"odb.h","sig":"git_rawobj *","comments":"As a result of this call, obj->data will be set to NULL.\n\n If obj->data is already NULL, nothing happens.","argline":"git_rawobj *obj","line":130,"args":[{"type":"git_rawobj *","comment":"object descriptor to free.","name":"obj"}],"rawComments":"\n Release all memory used by the obj structure.\n\n As a result of this call, obj->data will be set to NULL.\n\n If obj->data is already NULL, nothing happens.\n\n @param obj object descriptor to free.\n\n","lineto":143,"description":"Release all memory used by the obj structure."},"git_blob_new":{"return":{"type":"int","comment":"0 on success; error code otherwise"},"group":"blob","file":"blob.h","sig":"git_blob **::git_repository *","comments":"The blob object must be manually filled using\n the 'set_rawcontent' methods before it can\n be written back to disk.","argline":"git_blob **blob, git_repository *repo","line":31,"args":[{"type":"git_blob **","comment":"pointer to the new blob","name":"blob"},{"type":"git_repository *","comment":"The repository where the object will reside","name":"repo"}],"rawComments":"\n Create a new in-memory git_blob.\n\n The blob object must be manually filled using\n the 'set_rawcontent' methods before it can\n be written back to disk.\n\n @param blob pointer to the new blob\n @param repo The repository where the object will reside\n @return 0 on success; error code otherwise\n\n","lineto":42,"description":"Create a new in-memory git_blob."},"git_odb__read_packed":{"return":{"type":"int","comment":""},"group":"odb","file":"odb.h","sig":"git_rawobj *::git_odb *::const git_oid *","comments":"If GIT_ENOTFOUND then out->data is set to NULL.\n\n @return\n - GIT_SUCCESS if the object was read.\n - GIT_ENOTFOUND if the object is not in the database.","argline":"git_rawobj *out, git_odb *db, const git_oid *id","line":90,"args":[{"type":"git_rawobj *","comment":"object descriptor to populate upon reading.","name":"out"},{"type":"git_odb *","comment":"database to search for the object in.","name":"db"},{"type":"const git_oid *","comment":"identity of the object to read.","name":"id"}],"rawComments":"\n Read an object from the database using only pack files.\n\n If GIT_ENOTFOUND then out->data is set to NULL.\n\n @param out object descriptor to populate upon reading.\n @param db database to search for the object in.\n @param id identity of the object to read.\n @return\n - GIT_SUCCESS if the object was read.\n - GIT_ENOTFOUND if the object is not in the database.\n\n","lineto":102,"description":"Read an object from the database using only pack files."},"git_object_id":{"return":{"type":"const git_oid *","comment":"the SHA1 id"},"group":"object","file":"repository.h","sig":"git_object *","comments":"In-memory objects created by git_object_new() do not\n have a SHA1 ID until they are written on a repository.","argline":"git_object *obj","line":122,"args":[{"type":"git_object *","comment":"the repository object","name":"obj"}],"rawComments":"\n Get the id (SHA1) of a repository object\n\n In-memory objects created by git_object_new() do not\n have a SHA1 ID until they are written on a repository.\n\n @param obj the repository object\n @return the SHA1 id\n\n","lineto":131,"description":"Get the id (SHA1) of a repository object"},"git_tree_remove_entry_byindex":{"return":{"type":"int","comment":"0 on successful removal; GIT_ENOTFOUND if the entry wasn't found"},"group":"tree","file":"tree.h","sig":"git_tree *::int","comments":"Index must be >= 0 and < than git_tree_entrycount().\n\n This will mark the tree as modified; the modified entry will\n be written back to disk on the next git_object_write()","argline":"git_tree *tree, int idx","line":124,"args":[{"type":"git_tree *","comment":"Tree where to remove the entry","name":"tree"},{"type":"int","comment":"index of the entry","name":"idx"}],"rawComments":"\n Remove an entry by its index.\n\n Index must be >= 0 and < than git_tree_entrycount().\n\n This will mark the tree as modified; the modified entry will\n be written back to disk on the next git_object_write()\n\n @param tree Tree where to remove the entry\n @param idx index of the entry\n @return 0 on successful removal; GIT_ENOTFOUND if the entry wasn't found\n\n","lineto":136,"description":"Remove an entry by its index."},"git_revwalk_reset":{"return":{"type":"void","comment":""},"group":"revwalk","file":"revwalk.h","sig":"git_revwalk *","comments":"","argline":"git_revwalk *walker","line":57,"args":[{"type":"git_revwalk *","comment":"handle to reset.","name":"walker"}],"rawComments":"\n Reset the walking machinery for reuse.\n @param walker handle to reset.\n\n","lineto":61,"description":"Reset the walking machinery for reuse."},"git_blob_set_rawcontent_fromfile":{"return":{"type":"int","comment":"0 on success; error code otherwise"},"group":"blob","file":"blob.h","sig":"git_blob *::const char *","comments":"","argline":"git_blob *blob, const char *filename","line":44,"args":[{"type":"git_blob *","comment":"pointer to the new blob","name":"blob"},{"type":"const char *","comment":"name of the file to read","name":"filename"}],"rawComments":"\n Fill a blob with the contents inside\n the pointed file.\n\n @param blob pointer to the new blob\n @param filename name of the file to read\n @return 0 on success; error code otherwise\n\n","lineto":52,"description":"Fill a blob with the contents inside the pointed file."},"git_index_find":{"return":{"type":"int","comment":"an index >= 0 if found, -1 otherwise"},"group":"index","file":"index.h","sig":"git_index *::const char *","comments":"","argline":"git_index *index, const char *path","line":107,"args":[{"type":"git_index *","comment":"an existing index object","name":"index"},{"type":"const char *","comment":"path to search","name":"path"}],"rawComments":"\n Find the first index of any entires which point to given\n path in the Git index.\n\n @param index an existing index object\n @param path path to search\n @return an index >= 0 if found, -1 otherwise\n\n","lineto":115,"description":"Find the first index of any entires which point to given path in the Git index."},"git_tag_id":{"return":{"type":"const git_oid *","comment":"object identity for the tag."},"group":"tag","file":"tag.h","sig":"git_tag *","comments":"","argline":"git_tag *tag","line":46,"args":[{"type":"git_tag *","comment":"a previously loaded tag.","name":"tag"}],"rawComments":"\n Get the id of a tag.\n @param tag a previously loaded tag.\n @return object identity for the tag.\n\n","lineto":51,"description":"Get the id of a tag."},"git_revwalk_hide":{"return":{"type":"int","comment":""},"group":"revwalk","file":"revwalk.h","sig":"git_revwalk *::git_commit *","comments":"","argline":"git_revwalk *walk, git_commit *commit","line":72,"args":[{"type":"git_revwalk *","comment":"","name":"walk"},{"type":"git_commit *","comment":"the commit that will be ignored during the traversal","name":"commit"}],"rawComments":"\n Mark a commit (and its ancestors) uninteresting for the output.\n @param walker the walker being used for the traversal.\n @param commit the commit that will be ignored during the traversal\n\n","lineto":77,"description":"Mark a commit (and its ancestors) uninteresting for the output. @param walker the walker being used for the traversal."},"git_index_open_bare":{"return":{"type":"int","comment":"0 on success; error code otherwise"},"group":"index","file":"index.h","sig":"git_index **::const char *","comments":"Since there is no ODB behind this index, any Index methods\n which rely on the ODB (e.g. index_add) will fail with the\n GIT_EBAREINDEX error code.","argline":"git_index **index, const char *index_path","line":48,"args":[{"type":"git_index **","comment":"the pointer for the new index","name":"index"},{"type":"const char *","comment":"the path to the index file in disk","name":"index_path"}],"rawComments":"\n Create a new Git index object as a memory representation\n of the Git index file in 'index_path', without a repository\n to back it.\n\n Since there is no ODB behind this index, any Index methods\n which rely on the ODB (e.g. index_add) will fail with the\n GIT_EBAREINDEX error code.\n\n @param index the pointer for the new index\n @param index_path the path to the index file in disk\n @return 0 on success; error code otherwise\n\n","lineto":61,"description":"Create a new Git index object as a memory representation of the Git index file in 'index_path', without a repository to back it."},"git_tree_entry_set_name":{"return":{"type":"void","comment":""},"group":"tree","file":"tree.h","sig":"git_tree_entry *::const char *","comments":"This will mark the tree that contains the entry as modified;\n the modified entry will be written back to disk on the next git_object_write()\n\n @param oid new filename for the entry","argline":"git_tree_entry *entry, const char *name","line":161,"args":[{"type":"git_tree_entry *","comment":"Entry object which will be modified","name":"entry"},{"type":"const char *","comment":"","name":"name"}],"rawComments":"\n Change the filename of a tree entry.\n\n This will mark the tree that contains the entry as modified;\n the modified entry will be written back to disk on the next git_object_write()\n\n @param entry Entry object which will be modified\n @param oid new filename for the entry\n\n","lineto":170,"description":"Change the filename of a tree entry."},"git_tree_add_entry":{"return":{"type":"int","comment":"0 on success; otherwise error code"},"group":"tree","file":"tree.h","sig":"git_tree *::const git_oid *::const char *::int","comments":"This will mark the tree as modified; the new entry will\n be written back to disk on the next git_object_write()\n\n @iparam id OID for the tree entry","argline":"git_tree *tree, const git_oid *id, const char *filename, int attributes","line":110,"args":[{"type":"git_tree *","comment":"Tree object to store the entry","name":"tree"},{"type":"const git_oid *","comment":"","name":"id"},{"type":"const char *","comment":"Filename for the tree entry","name":"filename"},{"type":"int","comment":"UNIX file attributes for the entry","name":"attributes"}],"rawComments":"\n Add a new entry to a tree.\n\n This will mark the tree as modified; the new entry will\n be written back to disk on the next git_object_write()\n\n @param tree Tree object to store the entry\n @iparam id OID for the tree entry\n @param filename Filename for the tree entry\n @param attributes UNIX file attributes for the entry\n @return 0 on success; otherwise error code\n\n","lineto":122,"description":"Add a new entry to a tree."},"git_tree_entry_byname":{"return":{"type":"git_tree_entry *","comment":"the tree entry; NULL if not found"},"group":"tree","file":"tree.h","sig":"git_tree *::const char *","comments":"","argline":"git_tree *tree, const char *filename","line":64,"args":[{"type":"git_tree *","comment":"a previously loaded tree.","name":"tree"},{"type":"const char *","comment":"the filename of the desired entry","name":"filename"}],"rawComments":"\n Lookup a tree entry by its filename\n @param tree a previously loaded tree.\n @param filename the filename of the desired entry\n @return the tree entry; NULL if not found\n\n","lineto":70,"description":"Lookup a tree entry by its filename"},"git_commit_author":{"return":{"type":"const git_person *","comment":"the author of a commit"},"group":"commit","file":"commit.h","sig":"git_commit *","comments":"","argline":"git_commit *commit","line":82,"args":[{"type":"git_commit *","comment":"a previously loaded commit.","name":"commit"}],"rawComments":"\n Get the author of a commit.\n @param commit a previously loaded commit.\n @return the author of a commit\n\n","lineto":87,"description":"Get the author of a commit."},"git_odb_read":{"return":{"type":"int","comment":""},"group":"odb","file":"odb.h","sig":"git_rawobj *::git_odb *::const git_oid *","comments":"If GIT_ENOTFOUND then out->data is set to NULL.\n\n @return\n - GIT_SUCCESS if the object was read;\n - GIT_ENOTFOUND if the object is not in the database.","argline":"git_rawobj *out, git_odb *db, const git_oid *id","line":57,"args":[{"type":"git_rawobj *","comment":"object descriptor to populate upon reading.","name":"out"},{"type":"git_odb *","comment":"database to search for the object in.","name":"db"},{"type":"const git_oid *","comment":"identity of the object to read.","name":"id"}],"rawComments":"\n Read an object from the database.\n\n If GIT_ENOTFOUND then out->data is set to NULL.\n\n @param out object descriptor to populate upon reading.\n @param db database to search for the object in.\n @param id identity of the object to read.\n @return\n - GIT_SUCCESS if the object was read;\n - GIT_ENOTFOUND if the object is not in the database.\n\n","lineto":69,"description":"Read an object from the database."},"git_obj_string_to_type":{"return":{"type":"git_otype","comment":"the corresponding git_otype."},"group":"obj","file":"odb.h","sig":"const char *","comments":"","argline":"const char *str","line":156,"args":[{"type":"const char *","comment":"the string to convert.","name":"str"}],"rawComments":"\n Convert a string object type representation to it's git_otype.\n\n @param str the string to convert.\n @return the corresponding git_otype.\n\n","lineto":162,"description":"Convert a string object type representation to it's git_otype."},"git_repository_index":{"return":{"type":"git_index *","comment":"a pointer to the Index object; NULL if the index cannot be opened"},"group":"repository","file":"repository.h","sig":"git_repository *","comments":"@param repo a repository object","argline":"git_repository *rpeo","line":71,"args":[{"type":"git_repository *","comment":"","name":"rpeo"}],"rawComments":"\n Get the Index file of a Git repository\n\n @param repo a repository object\n @return a pointer to the Index object;\n\tNULL if the index cannot be opened\n\n","lineto":78,"description":"Get the Index file of a Git repository"},"git_repository_open":{"return":{"type":"int","comment":"the new repository handle; NULL on error"},"group":"repository","file":"repository.h","sig":"git_repository **::const char *","comments":"The 'path' argument must point to an existing git repository\n folder, e.g.\n\n\t\t/path/to/my_repo/.git/\t(normal repository)\n\t\t\t\t\t\t\tobjects/\n\t\t\t\t\t\t\tindex\n\t\t\t\t\t\t\tHEAD\n\n\t\t/path/to/bare_repo/\t\t(bare repository)\n\t\t\t\t\t\tobjects/\n\t\t\t\t\t\tindex\n\t\t\t\t\t\tHEAD\n\n\tThe method will automatically detect if 'path' is a normal\n\tor bare repository or fail is 'path' is neither.","argline":"git_repository **repository, const char *path","line":18,"args":[{"type":"git_repository **","comment":"pointer to the repo which will be opened","name":"repository"},{"type":"const char *","comment":"the path to the repository","name":"path"}],"rawComments":"\n Open a git repository.\n\n The 'path' argument must point to an existing git repository\n folder, e.g.\n\n\t\t/path/to/my_repo/.git/\t(normal repository)\n\t\t\t\t\t\t\tobjects/\n\t\t\t\t\t\t\tindex\n\t\t\t\t\t\t\tHEAD\n\n\t\t/path/to/bare_repo/\t\t(bare repository)\n\t\t\t\t\t\tobjects/\n\t\t\t\t\t\tindex\n\t\t\t\t\t\tHEAD\n\n\tThe method will automatically detect if 'path' is a normal\n\tor bare repository or fail is 'path' is neither.\n\n @param repository pointer to the repo which will be opened\n @param path the path to the repository\n @return the new repository handle; NULL on error\n\n","lineto":41,"description":"Open a git repository."},"git_commit_id":{"return":{"type":"const git_oid *","comment":"object identity for the commit."},"group":"commit","file":"commit.h","sig":"git_commit *","comments":"","argline":"git_commit *commit","line":47,"args":[{"type":"git_commit *","comment":"a previously loaded commit.","name":"commit"}],"rawComments":"\n Get the id of a commit.\n @param commit a previously loaded commit.\n @return object identity for the commit.\n\n","lineto":52,"description":"Get the id of a commit."},"git_tree_lookup":{"return":{"type":"int","comment":"0 on success; error code otherwise"},"group":"tree","file":"tree.h","sig":"git_tree **::git_repository *::const git_oid *","comments":"","argline":"git_tree **tree, git_repository *repo, const git_oid *id","line":24,"args":[{"type":"git_tree **","comment":"pointer to the looked up tree","name":"tree"},{"type":"git_repository *","comment":"the repo to use when locating the tree.","name":"repo"},{"type":"const git_oid *","comment":"identity of the tree to locate.","name":"id"}],"rawComments":"\n Lookup a tree object from the repository.\n The generated tree object is owned by the revision\n repo and shall not be freed by the user.\n\n @param tree pointer to the looked up tree\n @param repo the repo to use when locating the tree.\n @param id identity of the tree to locate.\n @return 0 on success; error code otherwise\n\n","lineto":34,"description":"Lookup a tree object from the repository. The generated tree object is owned by the revision repo and shall not be freed by the user."},"git_tag_type":{"return":{"type":"git_otype","comment":"type of the tagged object"},"group":"tag","file":"tag.h","sig":"git_tag *","comments":"","argline":"git_tag *t","line":60,"args":[{"type":"git_tag *","comment":"","name":"t"}],"rawComments":"\n Get the type of a tag's tagged object\n @param tag a previously loaded tag.\n @return type of the tagged object\n\n","lineto":65,"description":"Get the type of a tag's tagged object @param tag a previously loaded tag."},"git_revwalk_sorting":{"return":{"type":"int","comment":""},"group":"revwalk","file":"revwalk.h","sig":"git_revwalk *::unsigned int","comments":"","argline":"git_revwalk *walk, unsigned int sort_mode","line":86,"args":[{"type":"git_revwalk *","comment":"the walker being used for the traversal.","name":"walk"},{"type":"unsigned int","comment":"combination of GIT_RPSORT_XXX flags","name":"sort_mode"}],"rawComments":"\n Change the sorting mode when iterating through the\n repository's contents.\n Changing the sorting mode resets the walker.\n @param walk the walker being used for the traversal.\n @param sort_mode combination of GIT_RPSORT_XXX flags\n\n","lineto":93,"description":"Change the sorting mode when iterating through the repository's contents. Changing the sorting mode resets the walker."},"git_oid_cpy":{"return":{"type":"void","comment":""},"group":"oid","file":"oid.h","sig":"git_oid *::const git_oid *","comments":"","argline":"git_oid *out, const git_oid *src","line":99,"args":[{"type":"git_oid *","comment":"oid structure the result is written into.","name":"out"},{"type":"const git_oid *","comment":"oid structure to copy from.","name":"src"}],"rawComments":"\n Copy an oid from one structure to another.\n @param out oid structure the result is written into.\n @param src oid structure to copy from.\n\n","lineto":107,"description":"Copy an oid from one structure to another."},"git_object_write":{"return":{"type":"int","comment":"0 on success; otherwise an error code"},"group":"object","file":"repository.h","sig":"git_object *","comments":"The object will be written to its corresponding\n repository.\n\n If the object has no changes since it was first\n read from the repository, no actions will take place.\n\n If the object has been modified since it was read from\n the repository, or it has been created from scratch\n in memory, it will be written to the repository and\n its SHA1 ID will be updated accordingly.","argline":"git_object *object","line":103,"args":[{"type":"git_object *","comment":"Git object to write back","name":"object"}],"rawComments":"\n Write back an object to disk.\n\n The object will be written to its corresponding\n repository.\n\n If the object has no changes since it was first\n read from the repository, no actions will take place.\n\n If the object has been modified since it was read from\n the repository, or it has been created from scratch\n in memory, it will be written to the repository and\n its SHA1 ID will be updated accordingly.\n\n @param object Git object to write back\n @return 0 on success; otherwise an error code\n\n","lineto":120,"description":"Write back an object to disk."},"git_commit_message_short":{"return":{"type":"const char *","comment":"the short message of a commit"},"group":"commit","file":"commit.h","sig":"git_commit *","comments":"","argline":"git_commit *commit","line":54,"args":[{"type":"git_commit *","comment":"a previously loaded commit.","name":"commit"}],"rawComments":"\n Get the short (one line) message of a commit.\n @param commit a previously loaded commit.\n @return the short message of a commit\n\n","lineto":59,"description":"Get the short (one line) message of a commit."},"git_tree_entry_set_id":{"return":{"type":"void","comment":""},"group":"tree","file":"tree.h","sig":"git_tree_entry *::const git_oid *","comments":"This will mark the tree that contains the entry as modified;\n the modified entry will be written back to disk on the next git_object_write()","argline":"git_tree_entry *entry, const git_oid *oid","line":150,"args":[{"type":"git_tree_entry *","comment":"Entry object which will be modified","name":"entry"},{"type":"const git_oid *","comment":"new SHA1 oid for the entry","name":"oid"}],"rawComments":"\n Change the SHA1 id of a tree entry.\n\n This will mark the tree that contains the entry as modified;\n the modified entry will be written back to disk on the next git_object_write()\n\n @param entry Entry object which will be modified\n @param oid new SHA1 oid for the entry\n\n","lineto":159,"description":"Change the SHA1 id of a tree entry."},"git_revwalk_repository":{"return":{"type":"git_repository *","comment":"the repository being walked"},"group":"revwalk","file":"revwalk.h","sig":"git_revwalk *","comments":"","argline":"git_revwalk *walk","line":101,"args":[{"type":"git_revwalk *","comment":"the revision walker","name":"walk"}],"rawComments":"\n Return the repository on which this walker\n is operating.\n\n @param walk the revision walker\n @return the repository being walked\n\n","lineto":108,"description":"Return the repository on which this walker is operating."},"git_odb_write":{"return":{"type":"int","comment":""},"group":"odb","file":"odb.h","sig":"git_oid *::git_odb *::git_rawobj *","comments":"@return\n - GIT_SUCCESS if the object was written;\n - GIT_ERROR otherwise.","argline":"git_oid *id, git_odb *db, git_rawobj *obj","line":118,"args":[{"type":"git_oid *","comment":"identity of the object written.","name":"id"},{"type":"git_odb *","comment":"database to which the object should be written.","name":"db"},{"type":"git_rawobj *","comment":"object descriptor for the object to write.","name":"obj"}],"rawComments":"\n Write an object to the database.\n\n @param id identity of the object written.\n @param db database to which the object should be written.\n @param obj object descriptor for the object to write.\n @return\n - GIT_SUCCESS if the object was written;\n - GIT_ERROR otherwise.\n\n","lineto":128,"description":"Write an object to the database."},"git_oid_allocfmt":{"return":{"type":"char *","comment":"the c-string; NULL if memory is exhausted. Caller must deallocate the string with free()."},"group":"oid","file":"oid.h","sig":"const git_oid *","comments":"","argline":"const git_oid *oid","line":74,"args":[{"type":"const git_oid *","comment":"the oid structure to format","name":"oid"}],"rawComments":"\n Format a gid_oid into a newly allocated c-string.\n @param oid the oid structure to format\n @return the c-string; NULL if memory is exhausted. Caller must\n deallocate the string with free().\n\n","lineto":80,"description":"Format a gid_oid into a newly allocated c-string."},"git_odb_exists":{"return":{"type":"int","comment":""},"group":"odb","file":"odb.h","sig":"git_odb *::const git_oid *","comments":"@return\n - true, if the object was found\n - false, otherwise","argline":"git_odb *db, const git_oid *id","line":187,"args":[{"type":"git_odb *","comment":"database to be searched for the given object.","name":"db"},{"type":"const git_oid *","comment":"the object to search for.","name":"id"}],"rawComments":"\n Determine if the given object can be found in the object database.\n\n @param db database to be searched for the given object.\n @param id the object to search for.\n @return\n - true, if the object was found\n - false, otherwise\n\n","lineto":196,"description":"Determine if the given object can be found in the object database."},"git_tree_remove_entry_byname":{"return":{"type":"int","comment":"0 on successful removal; GIT_ENOTFOUND if the entry wasn't found"},"group":"tree","file":"tree.h","sig":"git_tree *::const char *","comments":"This will mark the tree as modified; the modified entry will\n be written back to disk on the next git_object_write()","argline":"git_tree *tree, const char *filename","line":138,"args":[{"type":"git_tree *","comment":"Tree where to remove the entry","name":"tree"},{"type":"const char *","comment":"File name of the entry","name":"filename"}],"rawComments":"\n Remove an entry by its filename.\n\n This will mark the tree as modified; the modified entry will\n be written back to disk on the next git_object_write()\n\n @param tree Tree where to remove the entry\n @param filename File name of the entry\n @return 0 on successful removal; GIT_ENOTFOUND if the entry wasn't found\n\n","lineto":148,"description":"Remove an entry by its filename."},"git_odb__read_loose":{"return":{"type":"int","comment":""},"group":"odb","file":"odb.h","sig":"git_rawobj *::git_odb *::const git_oid *","comments":"If GIT_ENOTFOUND then out->data is set to NULL.\n\n @return\n - GIT_SUCCESS if the object was read.\n - GIT_ENOTFOUND if the object is not in the database.","argline":"git_rawobj *out, git_odb *db, const git_oid *id","line":104,"args":[{"type":"git_rawobj *","comment":"object descriptor to populate upon reading.","name":"out"},{"type":"git_odb *","comment":"database to search for the object in.","name":"db"},{"type":"const git_oid *","comment":"identity of the object to read.","name":"id"}],"rawComments":"\n Read an object from the database using only loose object files.\n\n If GIT_ENOTFOUND then out->data is set to NULL.\n\n @param out object descriptor to populate upon reading.\n @param db database to search for the object in.\n @param id identity of the object to read.\n @return\n - GIT_SUCCESS if the object was read.\n - GIT_ENOTFOUND if the object is not in the database.\n\n","lineto":116,"description":"Read an object from the database using only loose object files."},"git_repository_database":{"return":{"type":"git_odb *","comment":"a pointer to the object db"},"group":"repository","file":"repository.h","sig":"git_repository *","comments":"","argline":"git_repository *repo","line":63,"args":[{"type":"git_repository *","comment":"a repository object","name":"repo"}],"rawComments":"\n Get the object database behind a Git repository\n\n @param repo a repository object\n @return a pointer to the object db\n\n","lineto":69,"description":"Get the object database behind a Git repository"},"git_blob_set_rawcontent":{"return":{"type":"int","comment":"0 on success; error code otherwise"},"group":"blob","file":"blob.h","sig":"git_blob *::const void *::size_t","comments":"","argline":"git_blob *blob, const void *buffer, size_t len","line":54,"args":[{"type":"git_blob *","comment":"pointer to the blob","name":"blob"},{"type":"const void *","comment":"buffer with the contents for the blob","name":"buffer"},{"type":"size_t","comment":"size of the buffer","name":"len"}],"rawComments":"\n Fill a blob with the contents inside\n the pointed buffer\n\n @param blob pointer to the blob\n @param buffer buffer with the contents for the blob\n @param len size of the buffer\n @return 0 on success; error code otherwise\n\n","lineto":63,"description":"Fill a blob with the contents inside the pointed buffer"},"git_object_type":{"return":{"type":"git_otype","comment":"the object's type"},"group":"object","file":"repository.h","sig":"git_object *","comments":"","argline":"git_object *obj","line":133,"args":[{"type":"git_object *","comment":"the repository object","name":"obj"}],"rawComments":"\n Get the object type of an object\n\n @param obj the repository object\n @return the object's type\n\n","lineto":139,"description":"Get the object type of an object"},"git_tag_set_tagger":{"return":{"type":"void","comment":""},"group":"tag","file":"tag.h","sig":"git_tag *::const char *::const char *::time_t","comments":"","argline":"git_tag *tag, const char *name, const char *email, time_t time","line":102,"args":[{"type":"git_tag *","comment":"The tag to modify","name":"tag"},{"type":"const char *","comment":"the name of the new tagger","name":"name"},{"type":"const char *","comment":"the email of the new tagger","name":"email"},{"type":"time_t","comment":"the time when the tag was created","name":"time"}],"rawComments":"\n Set the tagger of a tag\n @param tag The tag to modify\n @param name the name of the new tagger\n @param email the email of the new tagger\n @param time the time when the tag was created\n\n","lineto":109,"description":"Set the tagger of a tag"},"git_index_clear":{"return":{"type":"void","comment":""},"group":"index","file":"index.h","sig":"git_index *","comments":"","argline":"git_index *index","line":73,"args":[{"type":"git_index *","comment":"an existing index object","name":"index"}],"rawComments":"\n Clear the contents (all the entries) of an index object.\n This clears the index object in memory; changes must be manually\n written to disk for them to take effect.\n\n @param index an existing index object\n\n","lineto":80,"description":"Clear the contents (all the entries) of an index object. This clears the index object in memory; changes must be manually written to disk for them to take effect."},"git_index_write":{"return":{"type":"int","comment":"0 on success, otherwise an error code"},"group":"index","file":"index.h","sig":"git_index *","comments":"","argline":"git_index *index","line":98,"args":[{"type":"git_index *","comment":"an existing index object","name":"index"}],"rawComments":"\n Write an existing index object from memory back to disk\n using an atomic file lock.\n\n @param index an existing index object\n @return 0 on success, otherwise an error code\n\n","lineto":105,"description":"Write an existing index object from memory back to disk using an atomic file lock."},"git_oid_cmp":{"return":{"type":"int","comment":"<0, 0, >0 if a < b, a == b, a > b."},"group":"oid","file":"oid.h","sig":"const git_oid *::const git_oid *","comments":"","argline":"const git_oid *a, const git_oid *b","line":109,"args":[{"type":"const git_oid *","comment":"first oid structure.","name":"a"},{"type":"const git_oid *","comment":"second oid structure.","name":"b"}],"rawComments":"\n Compare two oid structures.\n @param a first oid structure.\n @param b second oid structure.\n @return <0, 0, >0 if a < b, a == b, a > b.\n\n","lineto":118,"description":"Compare two oid structures."}},"files":[{"meta":{"defgroup":"git_blob Git blob load and write routines","ingroup":"Git","file":"git/blob.h","brief":"Git blob load and write routines"},"lines":99,"file":"blob.h","functions":["git_blob_lookup","git_blob_new","git_blob_set_rawcontent_fromfile","git_blob_set_rawcontent","git_blob_rawcontent","git_blob_rawsize","git_blob_writefile"]},{"meta":{"defgroup":"git_commit Git commit parsing, formatting routines","ingroup":"Git","file":"git/commit.h","brief":"Git commit parsing, formatting routines"},"lines":137,"file":"commit.h","functions":["git_commit_lookup","git_commit_new","git_commit_id","git_commit_message_short","git_commit_message","git_commit_time","git_commit_committer","git_commit_author","git_commit_tree","git_commit_add_parent","git_commit_set_message","git_commit_set_committer","git_commit_set_author","git_commit_set_tree"]},{"meta":{"defgroup":"git_common Git common platform definitions","ingroup":"Git","file":"git/common.h","brief":"Git common platform definitions"},"lines":133,"file":"common.h","functions":["__attribute__","__attribute__","git_person_time"]},{"meta":{"defgroup":null,"ingroup":"Git","file":"git/errors.h","brief":"Git error handling routines and variables"},"lines":33,"file":"errors.h","functions":["GIT_EXTERN_TLS","git_strerror"]},{"meta":{"defgroup":"git_index Git index parsing and manipulation routines","ingroup":"Git","file":"git/index.h","brief":"Git index parsing and manipulation routines"},"lines":172,"file":"index.h","functions":["git_index_open_bare","git_index_open_inrepo","git_index_clear","git_index_free","git_index_read","git_index_write","git_index_find","git_index_add","git_index_remove","git_index_insert","git_index_get","git_index_entrycount"]},{"meta":{"defgroup":"git_odb Git object database routines","ingroup":"Git","file":"git/odb.h","brief":"Git object database routines"},"lines":200,"file":"odb.h","functions":["git_odb_open","git_odb_close","git_odb_read","git_odb_read_header","git_odb__read_packed","git_odb__read_loose","git_odb_write","git_obj_close","git_obj_type_to_string","git_obj_string_to_type","git_obj__loose_object_type","git_obj_hash","git_odb_exists"]},{"meta":{"defgroup":"git_oid Git object id routines","ingroup":"Git","file":"git/oid.h","brief":"Git object id routines"},"lines":122,"file":"oid.h","functions":["git_oid_mkstr","git_oid_mkraw","git_oid_fmt","git_oid_pathfmt","git_oid_allocfmt","git_oid_to_string","git_oid_cpy","git_oid_cmp"]},{"meta":{"defgroup":"git_repository Git revision object management routines","ingroup":"Git","file":"git/repository.h","brief":"Git revision object management routines"},"lines":171,"file":"repository.h","functions":["git_repository_open","git_repository_lookup","git_repository_database","git_repository_index","git_repository_newobject","git_object_write","git_object_id","git_object_type","git_object_owner","git_object_free","git_repository_free"]},{"meta":{"defgroup":"git_revwalk Git revision traversal routines","ingroup":"Git","file":"git/revwalk.h","brief":"Git revision traversal routines"},"lines":112,"file":"revwalk.h","functions":["git_revwalk_new","git_revwalk_reset","git_revwalk_push","git_revwalk_hide","git_revwalk_next","git_revwalk_sorting","git_revwalk_free","git_revwalk_repository"]},{"meta":{"defgroup":"git_tag Git tag management","ingroup":"Git","file":"git/tag.h","brief":"Git tag parsing routines"},"lines":120,"file":"tag.h","functions":["git_tag_lookup","git_tag_new","git_tag_id","git_tag_target","git_tag_type","git_tag_name","git_tag_tagger","git_tag_message","git_tag_set_target","git_tag_set_name","git_tag_set_tagger","git_tag_set_message"]},{"meta":{"defgroup":null,"ingroup":null,"file":null,"brief":null},"lines":56,"file":"thread-utils.h","functions":[]},{"meta":{"defgroup":"git_tree Git tree parsing, loading routines","ingroup":"Git","file":"git/tree.h","brief":"Git tree parsing, loading routines"},"lines":185,"file":"tree.h","functions":["git_tree_lookup","git_tree_new","git_tree_id","git_tree_entrycount","git_tree_entry_byname","git_tree_entry_byindex","git_tree_entry_attributes","git_tree_entry_name","git_tree_entry_id","git_tree_add_entry","git_tree_remove_entry_byindex","git_tree_remove_entry_byname","git_tree_entry_set_id","git_tree_entry_set_name","git_tree_entry_set_attributes"]},{"meta":{"defgroup":"git_zlib Git data compression routines","ingroup":"Git","file":"git/zlib.h","brief":"Git data compression routines"},"lines":35,"file":"zlib.h","functions":["deflateBound"]}],"prefix":"src/git","globals":{"GIT_ENOMEM":{"value":"(GIT_ERROR - 3)","file":"common.h","line":76},"GIT_EOBJTYPE":{"value":"(GIT_ERROR - 5)","file":"common.h","line":82},"GIT_HAS_TLS":{"value":"1","file":"thread-utils.h","line":10},"GIT_EBAREINDEX":{"value":"(GIT_ERROR -14)","file":"common.h","line":109},"GIT_EZLIB":{"value":"(GIT_ERROR - 12)","file":"common.h","line":103},"GIT_EOBJCORRUPTED":{"value":"(GIT_ERROR - 6)","file":"common.h","line":85},"GIT_SORT_TOPOLOGICAL":{"value":"(1 << 0)","file":"revwalk.h","line":30},"GIT_EFLOCKFAIL":{"value":"(GIT_ERROR - 11)","file":"common.h","line":100},"GIT_OID_RAWSZ":{"value":"20","file":"oid.h","line":17},"GIT_ENOTFOUND":{"value":"(GIT_ERROR - 2)","file":"common.h","line":73},"GIT_SUCCESS":{"value":"0","file":"common.h","line":59},"GIT_SORT_REVERSE":{"value":"(1 << 2)","file":"revwalk.h","line":44},"GIT_EMISSINGOBJDATA":{"value":"(GIT_ERROR - 9)","file":"common.h","line":94},"GIT_EOSERR":{"value":"(GIT_ERROR - 4)","file":"common.h","line":79},"GIT_ERROR":{"value":"-1","file":"common.h","line":67},"GIT_OID_HEXSZ":{"value":"(GIT_OID_RAWSZ * 2)","file":"oid.h","line":20},"GIT_EINVALIDTYPE":{"value":"(GIT_ERROR - 8)","file":"common.h","line":91},"GIT_ENOTAREPO":{"value":"(GIT_ERROR - 7)","file":"common.h","line":88},"GIT_ENOTOID":{"value":"(GIT_ERROR - 1)","file":"common.h","line":70},"GIT_HAS_PTHREAD":{"value":"1","file":"thread-utils.h","line":11},"GIT_SORT_TIME":{"value":"(1 << 1)","file":"revwalk.h","line":37},"GIT_EBUSY":{"value":"(GIT_ERROR - 13)","file":"common.h","line":106},"GIT_SORT_NONE":{"value":"(0)","file":"revwalk.h","line":23},"GIT_EPACKCORRUPTED":{"value":"(GIT_ERROR - 10)","file":"common.h","line":97}},"groups":[["GIT",["GIT_EXTERN_TLS"]],["blob",["git_blob_lookup","git_blob_new","git_blob_rawcontent","git_blob_rawsize","git_blob_set_rawcontent","git_blob_set_rawcontent_fromfile","git_blob_writefile"]],["commit",["git_commit_add_parent","git_commit_author","git_commit_committer","git_commit_id","git_commit_lookup","git_commit_message","git_commit_message_short","git_commit_new","git_commit_set_author","git_commit_set_committer","git_commit_set_message","git_commit_set_tree","git_commit_time","git_commit_tree"]],["errors",["git_strerror"]],["index",["git_index_add","git_index_clear","git_index_entrycount","git_index_find","git_index_free","git_index_get","git_index_insert","git_index_open_bare","git_index_open_inrepo","git_index_read","git_index_remove","git_index_write"]],["obj",["git_obj__loose_object_type","git_obj_close","git_obj_hash","git_obj_string_to_type","git_obj_type_to_string"]],["object",["git_object_free","git_object_id","git_object_owner","git_object_type","git_object_write"]],["odb",["git_odb__read_loose","git_odb__read_packed","git_odb_close","git_odb_exists","git_odb_open","git_odb_read","git_odb_read_header","git_odb_write"]],["oid",["git_oid_allocfmt","git_oid_cmp","git_oid_cpy","git_oid_fmt","git_oid_mkraw","git_oid_mkstr","git_oid_pathfmt","git_oid_to_string"]],["person",["git_person_time"]],["repository",["git_repository_database","git_repository_free","git_repository_index","git_repository_lookup","git_repository_newobject","git_repository_open"]],["revwalk",["git_revwalk_free","git_revwalk_hide","git_revwalk_new","git_revwalk_next","git_revwalk_push","git_revwalk_repository","git_revwalk_reset","git_revwalk_sorting"]],["tag",["git_tag_id","git_tag_lookup","git_tag_message","git_tag_name","git_tag_new","git_tag_set_message","git_tag_set_name","git_tag_set_tagger","git_tag_set_target","git_tag_tagger","git_tag_target","git_tag_type"]],["tree",["git_tree_add_entry","git_tree_entry_attributes","git_tree_entry_byindex","git_tree_entry_byname","git_tree_entry_id","git_tree_entry_name","git_tree_entry_set_attributes","git_tree_entry_set_id","git_tree_entry_set_name","git_tree_entrycount","git_tree_id","git_tree_lookup","git_tree_new","git_tree_remove_entry_byindex","git_tree_remove_entry_byname"]],["zlib",["deflateBound"]]],"types":[["git_blob",{"type":"struct","value":"git_blob","file":"blob.h","tdef":"typedef","line":17,"used":{"needs":["git_blob_lookup","git_blob_new","git_blob_rawcontent","git_blob_rawsize","git_blob_set_rawcontent","git_blob_set_rawcontent_fromfile"],"returns":[]}}],["git_commit",{"type":"struct","value":"git_commit","file":"commit.h","tdef":"typedef","line":19,"used":{"needs":["git_commit_add_parent","git_commit_author","git_commit_committer","git_commit_id","git_commit_lookup","git_commit_message","git_commit_message_short","git_commit_new","git_commit_set_author","git_commit_set_committer","git_commit_set_message","git_commit_set_tree","git_commit_time","git_commit_tree","git_revwalk_hide","git_revwalk_push"],"returns":["git_revwalk_next"]}}],["git_index",{"type":"struct","value":"git_index","file":"index.h","tdef":"typedef","line":18,"used":{"needs":["git_index_add","git_index_clear","git_index_entrycount","git_index_find","git_index_free","git_index_get","git_index_insert","git_index_open_bare","git_index_open_inrepo","git_index_read","git_index_remove","git_index_write"],"returns":["git_repository_index"]}}],["git_index_entry",{"type":"struct","value":null,"file":"index.h","tdef":"typedef","line":28,"lineto":45,"used":{"needs":["git_index_insert"],"returns":["git_index_get"]},"block":"git_index_time ctime;\ngit_index_time mtime;\n\nuint32_t dev;\nuint32_t ino;\nuint32_t mode;\nuint32_t uid;\nuint32_t gid;\nuint32_t file_size;\n\ngit_oid oid;\n\nuint16_t flags;\nuint16_t flags_extended;\n\nchar *path;\n"}],["git_index_time",{"type":"struct","value":null,"file":"index.h","tdef":"typedef","line":22,"lineto":25,"used":{"needs":[],"returns":[]},"block":"uint32_t seconds;\nuint32_t nanoseconds;\n"}],["git_object",{"type":"struct","value":"git_object","file":"common.h","tdef":"typedef","line":121,"used":{"needs":["git_object_free","git_object_id","git_object_owner","git_object_type","git_object_write","git_repository_lookup","git_repository_newobject","git_tag_set_target"],"returns":["git_tag_target"]}}],["git_odb",{"type":"struct","value":"git_odb","file":"odb.h","tdef":"typedef","line":18,"used":{"needs":["git_odb__read_loose","git_odb__read_packed","git_odb_close","git_odb_exists","git_odb_open","git_odb_read","git_odb_read_header","git_odb_write"],"returns":["git_repository_database"]}}],["git_oid",{"type":"struct","value":null,"file":"oid.h","tdef":"typedef","line":23,"lineto":26,"used":{"needs":["git_blob_lookup","git_blob_writefile","git_commit_lookup","git_obj_hash","git_odb__read_loose","git_odb__read_packed","git_odb_exists","git_odb_read","git_odb_read_header","git_odb_write","git_oid_allocfmt","git_oid_cmp","git_oid_cpy","git_oid_fmt","git_oid_mkraw","git_oid_mkstr","git_oid_pathfmt","git_oid_to_string","git_repository_lookup","git_tag_lookup","git_tree_add_entry","git_tree_entry_set_id","git_tree_lookup"],"returns":["git_commit_id","git_object_id","git_tag_id","git_tree_entry_id","git_tree_id"]},"block":"/** raw binary formatted id */\nunsigned char id[GIT_OID_RAWSZ];\n"}],["git_otype",{"type":"enum","value":null,"file":"odb.h","tdef":"typedef","line":37,"lineto":48,"used":{"needs":["git_obj__loose_object_type","git_obj_type_to_string","git_repository_lookup","git_repository_newobject"],"returns":[]},"block":"GIT_OBJ_ANY = -2,\t\t/**< Object can be any of the following */\nGIT_OBJ_BAD = -1, /**< Object is invalid. */\nGIT_OBJ__EXT1 = 0, /**< Reserved for future use. */\nGIT_OBJ_COMMIT = 1, /**< A commit object. */\nGIT_OBJ_TREE = 2, /**< A tree (directory listing) object. */\nGIT_OBJ_BLOB = 3, /**< A file revision object. */\nGIT_OBJ_TAG = 4, /**< An annotated tag object. */\nGIT_OBJ__EXT2 = 5, /**< Reserved for future use. */\nGIT_OBJ_OFS_DELTA = 6, /**< A delta, base is given by an offset. */\nGIT_OBJ_REF_DELTA = 7, /**< A delta, base is given by object id. */\n"}],["git_person",{"type":"struct","value":"git_person","file":"common.h","tdef":"typedef","line":125,"used":{"needs":["git_person_time"],"returns":["git_commit_author","git_commit_committer","git_person_time","git_tag_tagger"]}}],["git_rawobj",{"type":"struct","value":null,"file":"odb.h","tdef":"typedef","line":51,"lineto":55,"used":{"needs":["git_obj_close","git_obj_hash","git_odb__read_loose","git_odb__read_packed","git_odb_read","git_odb_read_header","git_odb_write"],"returns":[]},"block":"void *data; /**< Raw, decompressed object data. */\nsize_t len; /**< Total number of bytes in data. */\ngit_otype type; /**< Type of this object. */\n"}],["git_repository",{"type":"struct","value":"git_repository","file":"common.h","tdef":"typedef","line":118,"used":{"needs":["git_blob_lookup","git_blob_new","git_blob_writefile","git_commit_lookup","git_commit_new","git_index_open_inrepo","git_repository_database","git_repository_free","git_repository_index","git_repository_lookup","git_repository_newobject","git_repository_open","git_revwalk_new","git_tag_lookup","git_tag_new","git_tree_lookup","git_tree_new"],"returns":["git_object_owner","git_revwalk_repository"]}}],["git_revwalk",{"type":"struct","value":"git_revwalk","file":"revwalk.h","tdef":"typedef","line":46,"used":{"needs":["git_revwalk_free","git_revwalk_hide","git_revwalk_new","git_revwalk_next","git_revwalk_push","git_revwalk_repository","git_revwalk_reset","git_revwalk_sorting"],"returns":[]}}],["git_tag",{"type":"struct","value":"git_tag","file":"tag.h","tdef":"typedef","line":19,"used":{"needs":["git_tag_id","git_tag_lookup","git_tag_message","git_tag_name","git_tag_new","git_tag_set_message","git_tag_set_name","git_tag_set_tagger","git_tag_set_target","git_tag_tagger","git_tag_target","git_tag_type"],"returns":[]}}],["git_tree",{"type":"struct","value":"git_tree","file":"tree.h","tdef":"typedef","line":22,"used":{"needs":["git_commit_set_tree","git_tree_add_entry","git_tree_entry_byindex","git_tree_entry_byname","git_tree_entrycount","git_tree_id","git_tree_lookup","git_tree_new","git_tree_remove_entry_byindex","git_tree_remove_entry_byname"],"returns":["git_commit_tree"]}}],["git_tree_entry",{"type":"struct","value":"git_tree_entry","file":"tree.h","tdef":"typedef","line":19,"used":{"needs":["git_tree_entry_attributes","git_tree_entry_id","git_tree_entry_name","git_tree_entry_set_attributes","git_tree_entry_set_id","git_tree_entry_set_name"],"returns":["git_tree_entry_byindex","git_tree_entry_byname"]}}]]} \ No newline at end of file
+{"functions":{"git_odb_open":{"return":{"type":"int","comment":"GIT_SUCCESS if the database opened; otherwise an error code describing why the open was not possible."},"group":"odb","file":"odb.h","sig":"git_odb **::const char *","comments":"","argline":"git_odb **out, const char *objects_dir","line":20,"args":[{"type":"git_odb **","comment":"location to store the database pointer, if opened. Set to NULL if the open failed.","name":"out"},{"type":"const char *","comment":"path of the database's \"objects\" directory.","name":"objects_dir"}],"rawComments":"\n Open an object database for read/write access.\n @param out location to store the database pointer, if opened.\n Set to NULL if the open failed.\n @param objects_dir path of the database's \"objects\" directory.\n @return GIT_SUCCESS if the database opened; otherwise an error\n code describing why the open was not possible.\n\n","lineto":28,"description":"Open an object database for read/write access."},"git_index_remove":{"return":{"type":"int","comment":"0 on success, otherwise an error code"},"group":"index","file":"index.h","sig":"git_index *::int","comments":"","argline":"git_index *index, int position","line":127,"args":[{"type":"git_index *","comment":"an existing index object","name":"index"},{"type":"int","comment":"position of the entry to remove","name":"position"}],"rawComments":"\n Remove an entry from the index\n\n @param index an existing index object\n @param position position of the entry to remove\n @return 0 on success, otherwise an error code\n\n","lineto":134,"description":"Remove an entry from the index"},"git_tag_set_name":{"return":{"type":"void","comment":""},"group":"tag","file":"tag.h","sig":"git_tag *::const char *","comments":"","argline":"git_tag *tag, const char *name","line":95,"args":[{"type":"git_tag *","comment":"The tag to modify","name":"tag"},{"type":"const char *","comment":"the new name for the tag","name":"name"}],"rawComments":"\n Set the name of a tag\n @param tag The tag to modify\n @param name the new name for the tag\n\n","lineto":100,"description":"Set the name of a tag"},"git_index_write":{"return":{"type":"int","comment":"0 on success, otherwise an error code"},"group":"index","file":"index.h","sig":"git_index *","comments":"","argline":"git_index *index","line":98,"args":[{"type":"git_index *","comment":"an existing index object","name":"index"}],"rawComments":"\n Write an existing index object from memory back to disk\n using an atomic file lock.\n\n @param index an existing index object\n @return 0 on success, otherwise an error code\n\n","lineto":105,"description":"Write an existing index object from memory back to disk using an atomic file lock."},"git_odb_exists":{"return":{"type":"int","comment":""},"group":"odb","file":"odb.h","sig":"git_odb *::const git_oid *","comments":"@return\n - true, if the object was found\n - false, otherwise","argline":"git_odb *db, const git_oid *id","line":187,"args":[{"type":"git_odb *","comment":"database to be searched for the given object.","name":"db"},{"type":"const git_oid *","comment":"the object to search for.","name":"id"}],"rawComments":"\n Determine if the given object can be found in the object database.\n\n @param db database to be searched for the given object.\n @param id the object to search for.\n @return\n - true, if the object was found\n - false, otherwise\n\n","lineto":196,"description":"Determine if the given object can be found in the object database."},"git_repository_lookup":{"return":{"type":"int","comment":"a reference to the object"},"group":"repository","file":"repository.h","sig":"git_object **::git_repository *::const git_oid *::git_otype","comments":"The generated reference is owned by the repository and\n should not be freed by the user.\n\n The 'type' parameter must match the type of the object\n in the odb; the method will fail otherwise.\n The special value 'GIT_OBJ_ANY' may be passed to let\n the method guess the object's type.","argline":"git_object **object, git_repository *repo, const git_oid *id, git_otype type","line":44,"args":[{"type":"git_object **","comment":"pointer to the looked-up object","name":"object"},{"type":"git_repository *","comment":"the repository to look up the object","name":"repo"},{"type":"const git_oid *","comment":"the unique identifier for the object","name":"id"},{"type":"git_otype","comment":"the type of the object","name":"type"}],"rawComments":"\n Lookup a reference to one of the objects in the repostory.\n\n The generated reference is owned by the repository and\n should not be freed by the user.\n\n The 'type' parameter must match the type of the object\n in the odb; the method will fail otherwise.\n The special value 'GIT_OBJ_ANY' may be passed to let\n the method guess the object's type.\n\n @param object pointer to the looked-up object\n @param repo the repository to look up the object\n @param id the unique identifier for the object\n @param type the type of the object\n @return a reference to the object\n\n","lineto":61,"description":"Lookup a reference to one of the objects in the repostory."},"git_index_find":{"return":{"type":"int","comment":"an index >= 0 if found, -1 otherwise"},"group":"index","file":"index.h","sig":"git_index *::const char *","comments":"","argline":"git_index *index, const char *path","line":107,"args":[{"type":"git_index *","comment":"an existing index object","name":"index"},{"type":"const char *","comment":"path to search","name":"path"}],"rawComments":"\n Find the first index of any entires which point to given\n path in the Git index.\n\n @param index an existing index object\n @param path path to search\n @return an index >= 0 if found, -1 otherwise\n\n","lineto":115,"description":"Find the first index of any entires which point to given path in the Git index."},"git_tree_remove_entry_byindex":{"return":{"type":"int","comment":"0 on successful removal; GIT_ENOTFOUND if the entry wasn't found"},"group":"tree","file":"tree.h","sig":"git_tree *::int","comments":"Index must be >= 0 and < than git_tree_entrycount().\n\n This will mark the tree as modified; the modified entry will\n be written back to disk on the next git_object_write()","argline":"git_tree *tree, int idx","line":124,"args":[{"type":"git_tree *","comment":"Tree where to remove the entry","name":"tree"},{"type":"int","comment":"index of the entry","name":"idx"}],"rawComments":"\n Remove an entry by its index.\n\n Index must be >= 0 and < than git_tree_entrycount().\n\n This will mark the tree as modified; the modified entry will\n be written back to disk on the next git_object_write()\n\n @param tree Tree where to remove the entry\n @param idx index of the entry\n @return 0 on successful removal; GIT_ENOTFOUND if the entry wasn't found\n\n","lineto":136,"description":"Remove an entry by its index."},"git_tree_entry_id":{"return":{"type":"const git_oid *","comment":"the oid of the object"},"group":"tree","file":"tree.h","sig":"git_tree_entry *","comments":"","argline":"git_tree_entry *entry","line":94,"args":[{"type":"git_tree_entry *","comment":"a tree entry","name":"entry"}],"rawComments":"\n Get the id of the object pointed by the entry\n @param entry a tree entry\n @return the oid of the object\n\n","lineto":99,"description":"Get the id of the object pointed by the entry"},"git_tag_set_tagger":{"return":{"type":"void","comment":""},"group":"tag","file":"tag.h","sig":"git_tag *::const char *::const char *::time_t","comments":"","argline":"git_tag *tag, const char *name, const char *email, time_t time","line":102,"args":[{"type":"git_tag *","comment":"The tag to modify","name":"tag"},{"type":"const char *","comment":"the name of the new tagger","name":"name"},{"type":"const char *","comment":"the email of the new tagger","name":"email"},{"type":"time_t","comment":"the time when the tag was created","name":"time"}],"rawComments":"\n Set the tagger of a tag\n @param tag The tag to modify\n @param name the name of the new tagger\n @param email the email of the new tagger\n @param time the time when the tag was created\n\n","lineto":109,"description":"Set the tagger of a tag"},"git_tag_id":{"return":{"type":"const git_oid *","comment":"object identity for the tag."},"group":"tag","file":"tag.h","sig":"git_tag *","comments":"","argline":"git_tag *tag","line":46,"args":[{"type":"git_tag *","comment":"a previously loaded tag.","name":"tag"}],"rawComments":"\n Get the id of a tag.\n @param tag a previously loaded tag.\n @return object identity for the tag.\n\n","lineto":51,"description":"Get the id of a tag."},"git_tag_lookup":{"return":{"type":"int","comment":"0 on success; error code otherwise"},"group":"tag","file":"tag.h","sig":"git_tag **::git_repository *::const git_oid *","comments":"","argline":"git_tag **tag, git_repository *repo, const git_oid *id","line":21,"args":[{"type":"git_tag **","comment":"pointer to the looked up tag","name":"tag"},{"type":"git_repository *","comment":"the repo to use when locating the tag.","name":"repo"},{"type":"const git_oid *","comment":"identity of the tag to locate.","name":"id"}],"rawComments":"\n Lookup a tag object from the repository.\n The generated tag object is owned by the revision\n repo and shall not be freed by the user.\n\n @param tag pointer to the looked up tag\n @param repo the repo to use when locating the tag.\n @param id identity of the tag to locate.\n @return 0 on success; error code otherwise\n\n","lineto":31,"description":"Lookup a tag object from the repository. The generated tag object is owned by the revision repo and shall not be freed by the user."},"git_revwalk_sorting":{"return":{"type":"int","comment":""},"group":"revwalk","file":"revwalk.h","sig":"git_revwalk *::unsigned int","comments":"","argline":"git_revwalk *walk, unsigned int sort_mode","line":86,"args":[{"type":"git_revwalk *","comment":"the walker being used for the traversal.","name":"walk"},{"type":"unsigned int","comment":"combination of GIT_RPSORT_XXX flags","name":"sort_mode"}],"rawComments":"\n Change the sorting mode when iterating through the\n repository's contents.\n Changing the sorting mode resets the walker.\n @param walk the walker being used for the traversal.\n @param sort_mode combination of GIT_RPSORT_XXX flags\n\n","lineto":93,"description":"Change the sorting mode when iterating through the repository's contents. Changing the sorting mode resets the walker."},"git_oid_to_string":{"return":{"type":"char *","comment":"the out buffer pointer, assuming no input parameter errors, otherwise a pointer to an empty string."},"group":"oid","file":"oid.h","sig":"char *::size_t::const git_oid *","comments":"","argline":"char *out, size_t n, const git_oid *oid","line":82,"args":[{"type":"char *","comment":"the buffer into which the oid string is output.","name":"out"},{"type":"size_t","comment":"the size of the out buffer.","name":"n"},{"type":"const git_oid *","comment":"the oid structure to format.","name":"oid"}],"rawComments":"\n Format a git_oid into a buffer as a hex format c-string.\n <p>\n If the buffer is smaller than GIT_OID_HEXSZ+1, then the resulting\n oid c-string will be truncated to n-1 characters. If there are\n any input parameter errors (out == NULL, n == 0, oid == NULL),\n then a pointer to an empty string is returned, so that the return\n value can always be printed.\n\n @param out the buffer into which the oid string is output.\n @param n the size of the out buffer.\n @param oid the oid structure to format.\n @return the out buffer pointer, assuming no input parameter\n errors, otherwise a pointer to an empty string.\n\n","lineto":97,"description":"Format a git_oid into a buffer as a hex format c-string. <p> If the buffer is smaller than GIT_OID_HEXSZ+1, then the resulting oid c-string will be truncated to n-1 characters. If there are any input parameter errors (out == NULL, n == 0, oid == NULL), then a pointer to an empty string is returned, so that the return value can always be printed."},"git_odb_close":{"return":{"type":"void","comment":""},"group":"odb","file":"odb.h","sig":"git_odb *","comments":"","argline":"git_odb *db","line":30,"args":[{"type":"git_odb *","comment":"database pointer to close. If NULL no action is taken.","name":"db"}],"rawComments":"\n Close an open object database.\n @param db database pointer to close. If NULL no action is taken.\n\n","lineto":34,"description":"Close an open object database."},"git_oid_mkstr":{"return":{"type":"int","comment":"GIT_SUCCESS if valid; GIT_ENOTOID on failure."},"group":"oid","file":"oid.h","sig":"git_oid *::const char *","comments":"","argline":"git_oid *out, const char *str","line":28,"args":[{"type":"git_oid *","comment":"oid structure the result is written into.","name":"out"},{"type":"const char *","comment":"input hex string; must be pointing at the start of the hex sequence and have at least the number of bytes needed for an oid encoded in hex (40 bytes).","name":"str"}],"rawComments":"\n Parse a hex formatted object id into a git_oid.\n @param out oid structure the result is written into.\n @param str input hex string; must be pointing at the start of\n the hex sequence and have at least the number of bytes\n needed for an oid encoded in hex (40 bytes).\n @return GIT_SUCCESS if valid; GIT_ENOTOID on failure.\n\n","lineto":36,"description":"Parse a hex formatted object id into a git_oid."},"__attribute__":{"return":{"type":"","comment":""},"file":"common.h","sig":"","comments":"","argline":"(visibility(\"default\"))","line":26,"args":[{"type":"","comment":"","name":"(visibility(\"default\"))"}],"rawComments":" Declare a public TLS symbol exported for application use. ","lineto":31,"description":"Declare a public TLS symbol exported for application use."},"git_repository_database":{"return":{"type":"git_odb *","comment":"a pointer to the object db"},"group":"repository","file":"repository.h","sig":"git_repository *","comments":"","argline":"git_repository *repo","line":63,"args":[{"type":"git_repository *","comment":"a repository object","name":"repo"}],"rawComments":"\n Get the object database behind a Git repository\n\n @param repo a repository object\n @return a pointer to the object db\n\n","lineto":69,"description":"Get the object database behind a Git repository"},"git_revwalk_next":{"return":{"type":"git_commit *","comment":"next commit; NULL if there is no more output."},"group":"revwalk","file":"revwalk.h","sig":"git_revwalk *","comments":"","argline":"git_revwalk *walk","line":79,"args":[{"type":"git_revwalk *","comment":"the walker to pop the commit from.","name":"walk"}],"rawComments":"\n Get the next commit from the revision traversal.\n @param walk the walker to pop the commit from.\n @return next commit; NULL if there is no more output.\n\n","lineto":84,"description":"Get the next commit from the revision traversal."},"git_odb__read_loose":{"return":{"type":"int","comment":""},"group":"odb","file":"odb.h","sig":"git_rawobj *::git_odb *::const git_oid *","comments":"If GIT_ENOTFOUND then out->data is set to NULL.\n\n @return\n - GIT_SUCCESS if the object was read.\n - GIT_ENOTFOUND if the object is not in the database.","argline":"git_rawobj *out, git_odb *db, const git_oid *id","line":104,"args":[{"type":"git_rawobj *","comment":"object descriptor to populate upon reading.","name":"out"},{"type":"git_odb *","comment":"database to search for the object in.","name":"db"},{"type":"const git_oid *","comment":"identity of the object to read.","name":"id"}],"rawComments":"\n Read an object from the database using only loose object files.\n\n If GIT_ENOTFOUND then out->data is set to NULL.\n\n @param out object descriptor to populate upon reading.\n @param db database to search for the object in.\n @param id identity of the object to read.\n @return\n - GIT_SUCCESS if the object was read.\n - GIT_ENOTFOUND if the object is not in the database.\n\n","lineto":116,"description":"Read an object from the database using only loose object files."},"git_blob_set_rawcontent":{"return":{"type":"int","comment":"0 on success; error code otherwise"},"group":"blob","file":"blob.h","sig":"git_blob *::const void *::size_t","comments":"","argline":"git_blob *blob, const void *buffer, size_t len","line":54,"args":[{"type":"git_blob *","comment":"pointer to the blob","name":"blob"},{"type":"const void *","comment":"buffer with the contents for the blob","name":"buffer"},{"type":"size_t","comment":"size of the buffer","name":"len"}],"rawComments":"\n Fill a blob with the contents inside\n the pointed buffer\n\n @param blob pointer to the blob\n @param buffer buffer with the contents for the blob\n @param len size of the buffer\n @return 0 on success; error code otherwise\n\n","lineto":63,"description":"Fill a blob with the contents inside the pointed buffer"},"git_commit_lookup":{"return":{"type":"int","comment":"0 on success; error code otherwise"},"group":"commit","file":"commit.h","sig":"git_commit **::git_repository *::const git_oid *","comments":"","argline":"git_commit **commit, git_repository *repo, const git_oid *id","line":21,"args":[{"type":"git_commit **","comment":"pointer to the looked up commit","name":"commit"},{"type":"git_repository *","comment":"the repo to use when locating the commit.","name":"repo"},{"type":"const git_oid *","comment":"identity of the commit to locate. If the object is an annotated tag it will be peeled back to the commit.","name":"id"}],"rawComments":"\n Lookup a commit object from a repository.\n The generated commit object is owned by the revision\n repo and shall not be freed by the user.\n\n @param commit pointer to the looked up commit\n @param repo the repo to use when locating the commit.\n @param id identity of the commit to locate. If the object is\n an annotated tag it will be peeled back to the commit.\n @return 0 on success; error code otherwise\n\n","lineto":32,"description":"Lookup a commit object from a repository. The generated commit object is owned by the revision repo and shall not be freed by the user."},"git_commit_author":{"return":{"type":"const git_person *","comment":"the author of a commit"},"group":"commit","file":"commit.h","sig":"git_commit *","comments":"","argline":"git_commit *commit","line":82,"args":[{"type":"git_commit *","comment":"a previously loaded commit.","name":"commit"}],"rawComments":"\n Get the author of a commit.\n @param commit a previously loaded commit.\n @return the author of a commit\n\n","lineto":87,"description":"Get the author of a commit."},"git_blob_writefile":{"return":{"type":"int","comment":""},"group":"blob","file":"blob.h","sig":"git_oid *::git_repository *::const char *","comments":"","argline":"git_oid *written_id, git_repository *repo, const char *path","line":86,"args":[{"type":"git_oid *","comment":"return the id of the written blob","name":"written_id"},{"type":"git_repository *","comment":"repository where the blob will be written","name":"repo"},{"type":"const char *","comment":"file from which the blob will be created","name":"path"}],"rawComments":"\n Read a file from the working folder of a repository\n and write it to the Object Database as a loose blob,\n if such doesn't exist yet.\n\n @param written_id return the id of the written blob\n @param repo repository where the blob will be written\n @param path file from which the blob will be created\n\n","lineto":95,"description":"Read a file from the working folder of a repository and write it to the Object Database as a loose blob, if such doesn't exist yet."},"git_tree_entry_byindex":{"return":{"type":"git_tree_entry *","comment":"the tree entry; NULL if not found"},"group":"tree","file":"tree.h","sig":"git_tree *::int","comments":"","argline":"git_tree *tree, int idx","line":72,"args":[{"type":"git_tree *","comment":"a previously loaded tree.","name":"tree"},{"type":"int","comment":"the position in the entry list","name":"idx"}],"rawComments":"\n Lookup a tree entry by its position in the tree\n @param tree a previously loaded tree.\n @param idx the position in the entry list\n @return the tree entry; NULL if not found\n\n","lineto":78,"description":"Lookup a tree entry by its position in the tree"},"git_tag_tagger":{"return":{"type":"const git_person *","comment":"reference to the tag's author"},"group":"tag","file":"tag.h","sig":"git_tag *","comments":"","argline":"git_tag *t","line":74,"args":[{"type":"git_tag *","comment":"","name":"t"}],"rawComments":"\n Get the tagger (author) of a tag\n @param tag a previously loaded tag.\n @return reference to the tag's author\n\n","lineto":79,"description":"Get the tagger (author) of a tag @param tag a previously loaded tag."},"git_revwalk_repository":{"return":{"type":"git_repository *","comment":"the repository being walked"},"group":"revwalk","file":"revwalk.h","sig":"git_revwalk *","comments":"","argline":"git_revwalk *walk","line":101,"args":[{"type":"git_revwalk *","comment":"the revision walker","name":"walk"}],"rawComments":"\n Return the repository on which this walker\n is operating.\n\n @param walk the revision walker\n @return the repository being walked\n\n","lineto":108,"description":"Return the repository on which this walker is operating."},"git_odb_read_header":{"return":{"type":"int","comment":""},"group":"odb","file":"odb.h","sig":"git_rawobj *::git_odb *::const git_oid *","comments":"Only the 'type' and 'len' fields of the git_rawobj structure\n are filled. The 'data' pointer will always be NULL.\n\n The raw object pointed by 'out' doesn't need to be manually\n closed with git_obj_close().\n\n @return\n - GIT_SUCCESS if the object was read;\n - GIT_ENOTFOUND if the object is not in the database.","argline":"git_rawobj *out, git_odb *db, const git_oid *id","line":71,"args":[{"type":"git_rawobj *","comment":"object descriptor to populate upon reading.","name":"out"},{"type":"git_odb *","comment":"database to search for the object in.","name":"db"},{"type":"const git_oid *","comment":"identity of the object to read.","name":"id"}],"rawComments":"\n Read the header of an object from the database, without\n reading its full contents.\n\n Only the 'type' and 'len' fields of the git_rawobj structure\n are filled. The 'data' pointer will always be NULL.\n\n The raw object pointed by 'out' doesn't need to be manually\n closed with git_obj_close().\n\n @param out object descriptor to populate upon reading.\n @param db database to search for the object in.\n @param id identity of the object to read.\n @return\n - GIT_SUCCESS if the object was read;\n - GIT_ENOTFOUND if the object is not in the database.\n\n","lineto":88,"description":"Read the header of an object from the database, without reading its full contents."},"git_commit_time":{"return":{"type":"time_t","comment":"the time of a commit"},"group":"commit","file":"commit.h","sig":"git_commit *","comments":"","argline":"git_commit *commit","line":68,"args":[{"type":"git_commit *","comment":"a previously loaded commit.","name":"commit"}],"rawComments":"\n Get the commit time (i.e. committer time) of a commit.\n @param commit a previously loaded commit.\n @return the time of a commit\n\n","lineto":73,"description":"Get the commit time (i.e. committer time) of a commit."},"git_revwalk_push":{"return":{"type":"int","comment":""},"group":"revwalk","file":"revwalk.h","sig":"git_revwalk *::git_commit *","comments":"@param walker the walker being used for the traversal.","argline":"git_revwalk *walk, git_commit *commit","line":63,"args":[{"type":"git_revwalk *","comment":"","name":"walk"},{"type":"git_commit *","comment":"the commit to start from.","name":"commit"}],"rawComments":"\n Mark a commit to start traversal from.\n The commit object must belong to the repo which is being walked through.\n\n @param walker the walker being used for the traversal.\n @param commit the commit to start from.\n\n","lineto":70,"description":"Mark a commit to start traversal from. The commit object must belong to the repo which is being walked through."},"git_object_free":{"return":{"type":"void","comment":""},"group":"object","file":"repository.h","sig":"git_object *","comments":"Repository objects are managed automatically by the library,\n but this method can be used to force freeing one of the\n objects.\n\n Careful: freeing objects in the middle of a repository\n traversal will most likely cause errors.","argline":"git_object *object","line":149,"args":[{"type":"git_object *","comment":"the object to free","name":"object"}],"rawComments":"\n Free a reference to one of the objects in the repository.\n\n Repository objects are managed automatically by the library,\n but this method can be used to force freeing one of the\n objects.\n\n Careful: freeing objects in the middle of a repository\n traversal will most likely cause errors.\n\n @param object the object to free\n\n","lineto":161,"description":"Free a reference to one of the objects in the repository."},"git_commit_committer":{"return":{"type":"const git_person *","comment":"the committer of a commit"},"group":"commit","file":"commit.h","sig":"git_commit *","comments":"","argline":"git_commit *commit","line":75,"args":[{"type":"git_commit *","comment":"a previously loaded commit.","name":"commit"}],"rawComments":"\n Get the committer of a commit.\n @param commit a previously loaded commit.\n @return the committer of a commit\n\n","lineto":80,"description":"Get the committer of a commit."},"git_commit_message_short":{"return":{"type":"const char *","comment":"the short message of a commit"},"group":"commit","file":"commit.h","sig":"git_commit *","comments":"","argline":"git_commit *commit","line":54,"args":[{"type":"git_commit *","comment":"a previously loaded commit.","name":"commit"}],"rawComments":"\n Get the short (one line) message of a commit.\n @param commit a previously loaded commit.\n @return the short message of a commit\n\n","lineto":59,"description":"Get the short (one line) message of a commit."},"git_tree_entrycount":{"return":{"type":"size_t","comment":"the number of entries in the tree"},"group":"tree","file":"tree.h","sig":"git_tree *","comments":"","argline":"git_tree *tree","line":57,"args":[{"type":"git_tree *","comment":"a previously loaded tree.","name":"tree"}],"rawComments":"\n Get the number of entries listed in a tree\n @param tree a previously loaded tree.\n @return the number of entries in the tree\n\n","lineto":62,"description":"Get the number of entries listed in a tree"},"git_tag_set_target":{"return":{"type":"void","comment":""},"group":"tag","file":"tag.h","sig":"git_tag *::git_object *","comments":"","argline":"git_tag *tag, git_object *target","line":88,"args":[{"type":"git_tag *","comment":"The tag to modify","name":"tag"},{"type":"git_object *","comment":"the new tagged target","name":"target"}],"rawComments":"\n Set the target of a tag (i.e. the object that the tag points to)\n @param tag The tag to modify\n @param target the new tagged target\n\n","lineto":93,"description":"Set the target of a tag (i.e. the object that the tag points to)"},"git_tag_name":{"return":{"type":"const char *","comment":"name of the tag"},"group":"tag","file":"tag.h","sig":"git_tag *","comments":"","argline":"git_tag *t","line":67,"args":[{"type":"git_tag *","comment":"","name":"t"}],"rawComments":"\n Get the name of a tag\n @param tag a previously loaded tag.\n @return name of the tag\n\n","lineto":72,"description":"Get the name of a tag @param tag a previously loaded tag."},"git_tag_target":{"return":{"type":"const git_object *","comment":"reference to a repository object"},"group":"tag","file":"tag.h","sig":"git_tag *","comments":"","argline":"git_tag *t","line":53,"args":[{"type":"git_tag *","comment":"","name":"t"}],"rawComments":"\n Get the tagged object of a tag\n @param tag a previously loaded tag.\n @return reference to a repository object\n\n","lineto":58,"description":"Get the tagged object of a tag @param tag a previously loaded tag."},"git_repository_newobject":{"return":{"type":"int","comment":"the new object"},"group":"repository","file":"repository.h","sig":"git_object **::git_repository *::git_otype","comments":"The object's attributes can be filled in using the\n corresponding setter methods.\n\n The object will be written back to given git_repository\n when the git_object_write() function is called; objects\n cannot be written to disk until all their main\n attributes have been properly filled.\n\n Objects are instantiated with no SHA1 id; their id\n will be automatically generated when writing to the\n repository.\n\n @parem repo Repository where the object belongs","argline":"git_object **object, git_repository *repo, git_otype type","line":80,"args":[{"type":"git_object **","comment":"pointer to the new object","name":"object"},{"type":"git_repository *","comment":"","name":"repo"},{"type":"git_otype","comment":"Type of the object to be created","name":"type"}],"rawComments":"\n Create a new in-memory repository object with\n the given type.\n\n The object's attributes can be filled in using the\n corresponding setter methods.\n\n The object will be written back to given git_repository\n when the git_object_write() function is called; objects\n cannot be written to disk until all their main\n attributes have been properly filled.\n\n Objects are instantiated with no SHA1 id; their id\n will be automatically generated when writing to the\n repository.\n\n @param object pointer to the new object\n @parem repo Repository where the object belongs\n @param type Type of the object to be created\n @return the new object\n\n","lineto":101,"description":"Create a new in-memory repository object with the given type."},"git_obj_close":{"return":{"type":"void","comment":""},"group":"obj","file":"odb.h","sig":"git_rawobj *","comments":"As a result of this call, obj->data will be set to NULL.\n\n If obj->data is already NULL, nothing happens.","argline":"git_rawobj *obj","line":130,"args":[{"type":"git_rawobj *","comment":"object descriptor to free.","name":"obj"}],"rawComments":"\n Release all memory used by the obj structure.\n\n As a result of this call, obj->data will be set to NULL.\n\n If obj->data is already NULL, nothing happens.\n\n @param obj object descriptor to free.\n\n","lineto":143,"description":"Release all memory used by the obj structure."},"git_oid_cpy":{"return":{"type":"void","comment":""},"group":"oid","file":"oid.h","sig":"git_oid *::const git_oid *","comments":"","argline":"git_oid *out, const git_oid *src","line":99,"args":[{"type":"git_oid *","comment":"oid structure the result is written into.","name":"out"},{"type":"const git_oid *","comment":"oid structure to copy from.","name":"src"}],"rawComments":"\n Copy an oid from one structure to another.\n @param out oid structure the result is written into.\n @param src oid structure to copy from.\n\n","lineto":107,"description":"Copy an oid from one structure to another."},"git_commit_set_author":{"return":{"type":"void","comment":""},"group":"commit","file":"commit.h","sig":"git_commit *::const char *::const char *::time_t","comments":"","argline":"git_commit *commit, const char *name, const char *email, time_t time","line":119,"args":[{"type":"git_commit *","comment":"the commit object","name":"commit"},{"type":"const char *","comment":"name of the new author","name":"name"},{"type":"const char *","comment":"email of the new author","name":"email"},{"type":"time_t","comment":"time when the author created the commit","name":"time"}],"rawComments":"\n Set the author of a commit\n @param commit the commit object\n @param name name of the new author\n @param email email of the new author\n @param time time when the author created the commit\n\n","lineto":126,"description":"Set the author of a commit"},"git_index_clear":{"return":{"type":"void","comment":""},"group":"index","file":"index.h","sig":"git_index *","comments":"","argline":"git_index *index","line":73,"args":[{"type":"git_index *","comment":"an existing index object","name":"index"}],"rawComments":"\n Clear the contents (all the entries) of an index object.\n This clears the index object in memory; changes must be manually\n written to disk for them to take effect.\n\n @param index an existing index object\n\n","lineto":80,"description":"Clear the contents (all the entries) of an index object. This clears the index object in memory; changes must be manually written to disk for them to take effect."},"git_tree_id":{"return":{"type":"const git_oid *","comment":"object identity for the tree."},"group":"tree","file":"tree.h","sig":"git_tree *","comments":"","argline":"git_tree *tree","line":49,"args":[{"type":"git_tree *","comment":"a previously loaded tree.","name":"tree"}],"rawComments":"\n Get the id of a tree.\n @param tree a previously loaded tree.\n @return object identity for the tree.\n\n","lineto":54,"description":"Get the id of a tree."},"git_blob_set_rawcontent_fromfile":{"return":{"type":"int","comment":"0 on success; error code otherwise"},"group":"blob","file":"blob.h","sig":"git_blob *::const char *","comments":"","argline":"git_blob *blob, const char *filename","line":44,"args":[{"type":"git_blob *","comment":"pointer to the new blob","name":"blob"},{"type":"const char *","comment":"name of the file to read","name":"filename"}],"rawComments":"\n Fill a blob with the contents inside\n the pointed file.\n\n @param blob pointer to the new blob\n @param filename name of the file to read\n @return 0 on success; error code otherwise\n\n","lineto":52,"description":"Fill a blob with the contents inside the pointed file."},"git_commit_set_message":{"return":{"type":"void","comment":""},"group":"commit","file":"commit.h","sig":"git_commit *::const char *","comments":"","argline":"git_commit *commit, const char *message","line":103,"args":[{"type":"git_commit *","comment":"the commit object","name":"commit"},{"type":"const char *","comment":"the new message","name":"message"}],"rawComments":"\n Set the message of a commit\n @param commit the commit object\n @param message the new message\n\n","lineto":108,"description":"Set the message of a commit"},"git_obj_type_to_string":{"return":{"type":"const char *","comment":"the corresponding string representation."},"group":"obj","file":"odb.h","sig":"git_otype","comments":"The result is a pointer to a string in static memory and\n should not be free()'ed.","argline":"git_otype type","line":145,"args":[{"type":"git_otype","comment":"object type to convert.","name":"type"}],"rawComments":"\n Convert an object type to it's string representation.\n\n The result is a pointer to a string in static memory and\n should not be free()'ed.\n\n @param type object type to convert.\n @return the corresponding string representation.\n\n","lineto":154,"description":"Convert an object type to it's string representation."},"git_tree_entry_set_attributes":{"return":{"type":"void","comment":""},"group":"tree","file":"tree.h","sig":"git_tree_entry *::int","comments":"This will mark the tree that contains the entry as modified;\n the modified entry will be written back to disk on the next git_object_write()\n\n @param oid new attributes for the entry","argline":"git_tree_entry *entry, int attr","line":172,"args":[{"type":"git_tree_entry *","comment":"Entry object which will be modified","name":"entry"},{"type":"int","comment":"","name":"attr"}],"rawComments":"\n Change the attributes of a tree entry.\n\n This will mark the tree that contains the entry as modified;\n the modified entry will be written back to disk on the next git_object_write()\n\n @param entry Entry object which will be modified\n @param oid new attributes for the entry\n\n","lineto":181,"description":"Change the attributes of a tree entry."},"git_tag_set_message":{"return":{"type":"void","comment":""},"group":"tag","file":"tag.h","sig":"git_tag *::const char *","comments":"","argline":"git_tag *tag, const char *message","line":111,"args":[{"type":"git_tag *","comment":"The tag to modify","name":"tag"},{"type":"const char *","comment":"the new tagger for the tag","name":"message"}],"rawComments":"\n Set the message of a tag\n @param tag The tag to modify\n @param message the new tagger for the tag\n\n","lineto":116,"description":"Set the message of a tag"},"GIT_EXTERN_TLS":{"return":{"type":"","comment":""},"group":"GIT","file":"errors.h","sig":"int) git_errno; GIT_EXTERN(int *)","comments":"","argline":"int) git_errno; GIT_EXTERN(int *) git__errno_storage(void","line":14,"args":[{"type":"int) git_errno; GIT_EXTERN(int *)","comment":"","name":"git__errno_storage(void"}],"rawComments":" The git errno. ","lineto":20,"description":"The git errno."},"git_blob_lookup":{"return":{"type":"int","comment":"0 on success; error code otherwise"},"group":"blob","file":"blob.h","sig":"git_blob **::git_repository *::const git_oid *","comments":"","argline":"git_blob **blob, git_repository *repo, const git_oid *id","line":19,"args":[{"type":"git_blob **","comment":"pointer to the looked up blob","name":"blob"},{"type":"git_repository *","comment":"the repo to use when locating the blob.","name":"repo"},{"type":"const git_oid *","comment":"identity of the blob to locate.","name":"id"}],"rawComments":"\n Lookup a blob object from a repository.\n The generated blob object is owned by the revision\n repo and shall not be freed by the user.\n\n @param blob pointer to the looked up blob\n @param repo the repo to use when locating the blob.\n @param id identity of the blob to locate.\n @return 0 on success; error code otherwise\n\n","lineto":29,"description":"Lookup a blob object from a repository. The generated blob object is owned by the revision repo and shall not be freed by the user."},"git_index_insert":{"return":{"type":"int","comment":"0 on success, otherwise an error code"},"group":"index","file":"index.h","sig":"git_index *::const git_index_entry *","comments":"","argline":"git_index *index, const git_index_entry *source_entry","line":136,"args":[{"type":"git_index *","comment":"an existing index object","name":"index"},{"type":"const git_index_entry *","comment":"new entry object","name":"source_entry"}],"rawComments":"\n Insert an entry into the index.\n A full copy (including the 'path' string) of the given\n 'source_entry' will be inserted on the index; if the index\n already contains an entry for the same path, the entry\n will be updated.\n\n @param index an existing index object\n @param source_entry new entry object\n @return 0 on success, otherwise an error code\n\n","lineto":147,"description":"Insert an entry into the index. A full copy (including the 'path' string) of the given 'source_entry' will be inserted on the index; if the index already contains an entry for the same path, the entry will be updated."},"git_tree_entry_set_id":{"return":{"type":"void","comment":""},"group":"tree","file":"tree.h","sig":"git_tree_entry *::const git_oid *","comments":"This will mark the tree that contains the entry as modified;\n the modified entry will be written back to disk on the next git_object_write()","argline":"git_tree_entry *entry, const git_oid *oid","line":150,"args":[{"type":"git_tree_entry *","comment":"Entry object which will be modified","name":"entry"},{"type":"const git_oid *","comment":"new SHA1 oid for the entry","name":"oid"}],"rawComments":"\n Change the SHA1 id of a tree entry.\n\n This will mark the tree that contains the entry as modified;\n the modified entry will be written back to disk on the next git_object_write()\n\n @param entry Entry object which will be modified\n @param oid new SHA1 oid for the entry\n\n","lineto":159,"description":"Change the SHA1 id of a tree entry."},"git_tree_remove_entry_byname":{"return":{"type":"int","comment":"0 on successful removal; GIT_ENOTFOUND if the entry wasn't found"},"group":"tree","file":"tree.h","sig":"git_tree *::const char *","comments":"This will mark the tree as modified; the modified entry will\n be written back to disk on the next git_object_write()","argline":"git_tree *tree, const char *filename","line":138,"args":[{"type":"git_tree *","comment":"Tree where to remove the entry","name":"tree"},{"type":"const char *","comment":"File name of the entry","name":"filename"}],"rawComments":"\n Remove an entry by its filename.\n\n This will mark the tree as modified; the modified entry will\n be written back to disk on the next git_object_write()\n\n @param tree Tree where to remove the entry\n @param filename File name of the entry\n @return 0 on successful removal; GIT_ENOTFOUND if the entry wasn't found\n\n","lineto":148,"description":"Remove an entry by its filename."},"git_revwalk_free":{"return":{"type":"void","comment":""},"group":"revwalk","file":"revwalk.h","sig":"git_revwalk *","comments":"","argline":"git_revwalk *walk","line":95,"args":[{"type":"git_revwalk *","comment":"traversal handle to close. If NULL nothing occurs.","name":"walk"}],"rawComments":"\n Free a revwalk previously allocated.\n @param walk traversal handle to close. If NULL nothing occurs.\n\n","lineto":99,"description":"Free a revwalk previously allocated."},"git_oid_pathfmt":{"return":{"type":"void","comment":""},"group":"oid","file":"oid.h","sig":"char *::const git_oid *","comments":"","argline":"char *str, const git_oid *oid","line":59,"args":[{"type":"char *","comment":"output hex string; must be pointing at the start of the hex sequence and have at least the number of bytes needed for an oid encoded in hex (41 bytes). Only the oid digits are written; a '\\\\0' terminator must be added by the caller if it is required.","name":"str"},{"type":"const git_oid *","comment":"oid structure to format.","name":"oid"}],"rawComments":"\n Format a git_oid into a loose-object path string.\n <p>\n The resulting string is \"aa/...\", where \"aa\" is the first two\n hex digitis of the oid and \"...\" is the remaining 38 digits.\n\n @param str output hex string; must be pointing at the start of\n the hex sequence and have at least the number of bytes\n needed for an oid encoded in hex (41 bytes). Only the\n oid digits are written; a '\\\\0' terminator must be added\n by the caller if it is required.\n @param oid oid structure to format.\n\n","lineto":72,"description":"Format a git_oid into a loose-object path string. <p> The resulting string is \"aa/...\", where \"aa\" is the first two hex digitis of the oid and \"...\" is the remaining 38 digits."},"git_oid_allocfmt":{"return":{"type":"char *","comment":"the c-string; NULL if memory is exhausted. Caller must deallocate the string with free()."},"group":"oid","file":"oid.h","sig":"const git_oid *","comments":"","argline":"const git_oid *oid","line":74,"args":[{"type":"const git_oid *","comment":"the oid structure to format","name":"oid"}],"rawComments":"\n Format a gid_oid into a newly allocated c-string.\n @param oid the oid structure to format\n @return the c-string; NULL if memory is exhausted. Caller must\n deallocate the string with free().\n\n","lineto":80,"description":"Format a gid_oid into a newly allocated c-string."},"git_oid_mkraw":{"return":{"type":"void","comment":""},"group":"oid","file":"oid.h","sig":"git_oid *::const unsigned char *","comments":"","argline":"git_oid *out, const unsigned char *raw","line":38,"args":[{"type":"git_oid *","comment":"oid structure the result is written into.","name":"out"},{"type":"const unsigned char *","comment":"the raw input bytes to be copied.","name":"raw"}],"rawComments":"\n Copy an already raw oid into a git_oid structure.\n @param out oid structure the result is written into.\n @param raw the raw input bytes to be copied.\n\n","lineto":46,"description":"Copy an already raw oid into a git_oid structure."},"git_oid_cmp":{"return":{"type":"int","comment":"<0, 0, >0 if a < b, a == b, a > b."},"group":"oid","file":"oid.h","sig":"const git_oid *::const git_oid *","comments":"","argline":"const git_oid *a, const git_oid *b","line":109,"args":[{"type":"const git_oid *","comment":"first oid structure.","name":"a"},{"type":"const git_oid *","comment":"second oid structure.","name":"b"}],"rawComments":"\n Compare two oid structures.\n @param a first oid structure.\n @param b second oid structure.\n @return <0, 0, >0 if a < b, a == b, a > b.\n\n","lineto":118,"description":"Compare two oid structures."},"git_revwalk_hide":{"return":{"type":"int","comment":""},"group":"revwalk","file":"revwalk.h","sig":"git_revwalk *::git_commit *","comments":"","argline":"git_revwalk *walk, git_commit *commit","line":72,"args":[{"type":"git_revwalk *","comment":"","name":"walk"},{"type":"git_commit *","comment":"the commit that will be ignored during the traversal","name":"commit"}],"rawComments":"\n Mark a commit (and its ancestors) uninteresting for the output.\n @param walker the walker being used for the traversal.\n @param commit the commit that will be ignored during the traversal\n\n","lineto":77,"description":"Mark a commit (and its ancestors) uninteresting for the output. @param walker the walker being used for the traversal."},"git_object_owner":{"return":{"type":"git_repository *","comment":"the repository who owns this object"},"group":"object","file":"repository.h","sig":"git_object *","comments":"","argline":"git_object *obj","line":141,"args":[{"type":"git_object *","comment":"the object","name":"obj"}],"rawComments":"\n Get the repository that owns this object\n\n @param obj the object\n @return the repository who owns this object\n\n","lineto":147,"description":"Get the repository that owns this object"},"git_odb_read":{"return":{"type":"int","comment":""},"group":"odb","file":"odb.h","sig":"git_rawobj *::git_odb *::const git_oid *","comments":"If GIT_ENOTFOUND then out->data is set to NULL.\n\n @return\n - GIT_SUCCESS if the object was read;\n - GIT_ENOTFOUND if the object is not in the database.","argline":"git_rawobj *out, git_odb *db, const git_oid *id","line":57,"args":[{"type":"git_rawobj *","comment":"object descriptor to populate upon reading.","name":"out"},{"type":"git_odb *","comment":"database to search for the object in.","name":"db"},{"type":"const git_oid *","comment":"identity of the object to read.","name":"id"}],"rawComments":"\n Read an object from the database.\n\n If GIT_ENOTFOUND then out->data is set to NULL.\n\n @param out object descriptor to populate upon reading.\n @param db database to search for the object in.\n @param id identity of the object to read.\n @return\n - GIT_SUCCESS if the object was read;\n - GIT_ENOTFOUND if the object is not in the database.\n\n","lineto":69,"description":"Read an object from the database."},"git_repository_open":{"return":{"type":"int","comment":"the new repository handle; NULL on error"},"group":"repository","file":"repository.h","sig":"git_repository **::const char *","comments":"The 'path' argument must point to an existing git repository\n folder, e.g.\n\n\t\t/path/to/my_repo/.git/\t(normal repository)\n\t\t\t\t\t\t\tobjects/\n\t\t\t\t\t\t\tindex\n\t\t\t\t\t\t\tHEAD\n\n\t\t/path/to/bare_repo/\t\t(bare repository)\n\t\t\t\t\t\tobjects/\n\t\t\t\t\t\tindex\n\t\t\t\t\t\tHEAD\n\n\tThe method will automatically detect if 'path' is a normal\n\tor bare repository or fail is 'path' is neither.","argline":"git_repository **repository, const char *path","line":18,"args":[{"type":"git_repository **","comment":"pointer to the repo which will be opened","name":"repository"},{"type":"const char *","comment":"the path to the repository","name":"path"}],"rawComments":"\n Open a git repository.\n\n The 'path' argument must point to an existing git repository\n folder, e.g.\n\n\t\t/path/to/my_repo/.git/\t(normal repository)\n\t\t\t\t\t\t\tobjects/\n\t\t\t\t\t\t\tindex\n\t\t\t\t\t\t\tHEAD\n\n\t\t/path/to/bare_repo/\t\t(bare repository)\n\t\t\t\t\t\tobjects/\n\t\t\t\t\t\tindex\n\t\t\t\t\t\tHEAD\n\n\tThe method will automatically detect if 'path' is a normal\n\tor bare repository or fail is 'path' is neither.\n\n @param repository pointer to the repo which will be opened\n @param path the path to the repository\n @return the new repository handle; NULL on error\n\n","lineto":41,"description":"Open a git repository."},"deflateBound":{"return":{"type":"size_t","comment":"maximum length of the compressed data."},"group":"zlib","file":"zlib.h","sig":"z_streamp::size_t","comments":"This is a stub function used when zlib does not supply the\n deflateBound() implementation itself.","argline":"z_streamp stream, size_t s","line":17,"args":[{"type":"z_streamp","comment":"the stream pointer.","name":"stream"},{"type":"size_t","comment":"total length of the source data (in bytes).","name":"s"}],"rawComments":"\n deflateBound returns an upper bound on the compressed size.\n\n This is a stub function used when zlib does not supply the\n deflateBound() implementation itself.\n\n @param stream the stream pointer.\n @param s total length of the source data (in bytes).\n @return maximum length of the compressed data.\n\n","lineto":30,"description":"deflateBound returns an upper bound on the compressed size."},"git_blob_new":{"return":{"type":"int","comment":"0 on success; error code otherwise"},"group":"blob","file":"blob.h","sig":"git_blob **::git_repository *","comments":"The blob object must be manually filled using\n the 'set_rawcontent' methods before it can\n be written back to disk.","argline":"git_blob **blob, git_repository *repo","line":31,"args":[{"type":"git_blob **","comment":"pointer to the new blob","name":"blob"},{"type":"git_repository *","comment":"The repository where the object will reside","name":"repo"}],"rawComments":"\n Create a new in-memory git_blob.\n\n The blob object must be manually filled using\n the 'set_rawcontent' methods before it can\n be written back to disk.\n\n @param blob pointer to the new blob\n @param repo The repository where the object will reside\n @return 0 on success; error code otherwise\n\n","lineto":42,"description":"Create a new in-memory git_blob."},"git_obj_hash":{"return":{"type":"int","comment":""},"group":"obj","file":"odb.h","sig":"git_oid *::git_rawobj *","comments":"The input obj must be a valid loose object type and the data\n pointer must not be NULL, unless the len field is also zero.\n\n @return\n - GIT_SUCCESS if the object-ID was correctly determined.\n - GIT_ERROR if the given object is malformed.","argline":"git_oid *id, git_rawobj *obj","line":173,"args":[{"type":"git_oid *","comment":"the resulting object-ID.","name":"id"},{"type":"git_rawobj *","comment":"the object whose hash is to be determined.","name":"obj"}],"rawComments":"\n Determine the object-ID (sha1 hash) of the given git_rawobj.\n\n The input obj must be a valid loose object type and the data\n pointer must not be NULL, unless the len field is also zero.\n\n @param id the resulting object-ID.\n @param obj the object whose hash is to be determined.\n @return\n - GIT_SUCCESS if the object-ID was correctly determined.\n - GIT_ERROR if the given object is malformed.\n\n","lineto":185,"description":"Determine the object-ID (sha1 hash) of the given git_rawobj."},"git_object_id":{"return":{"type":"const git_oid *","comment":"the SHA1 id"},"group":"object","file":"repository.h","sig":"git_object *","comments":"In-memory objects created by git_object_new() do not\n have a SHA1 ID until they are written on a repository.","argline":"git_object *obj","line":122,"args":[{"type":"git_object *","comment":"the repository object","name":"obj"}],"rawComments":"\n Get the id (SHA1) of a repository object\n\n In-memory objects created by git_object_new() do not\n have a SHA1 ID until they are written on a repository.\n\n @param obj the repository object\n @return the SHA1 id\n\n","lineto":131,"description":"Get the id (SHA1) of a repository object"},"git_obj_string_to_type":{"return":{"type":"git_otype","comment":"the corresponding git_otype."},"group":"obj","file":"odb.h","sig":"const char *","comments":"","argline":"const char *str","line":156,"args":[{"type":"const char *","comment":"the string to convert.","name":"str"}],"rawComments":"\n Convert a string object type representation to it's git_otype.\n\n @param str the string to convert.\n @return the corresponding git_otype.\n\n","lineto":162,"description":"Convert a string object type representation to it's git_otype."},"git_repository_index":{"return":{"type":"git_index *","comment":"a pointer to the Index object; NULL if the index cannot be opened"},"group":"repository","file":"repository.h","sig":"git_repository *","comments":"@param repo a repository object","argline":"git_repository *rpeo","line":71,"args":[{"type":"git_repository *","comment":"","name":"rpeo"}],"rawComments":"\n Get the Index file of a Git repository\n\n @param repo a repository object\n @return a pointer to the Index object;\n\tNULL if the index cannot be opened\n\n","lineto":78,"description":"Get the Index file of a Git repository"},"git_blob_rawcontent":{"return":{"type":"const char *","comment":"the pointer; NULL if the blob has no contents"},"group":"blob","file":"blob.h","sig":"git_blob *","comments":"A pointer to the raw content of a blob is returned;\n this pointer is owned internally by the object and shall\n not be free'd. The pointer may be invalidated at a later\n time (e.g. when changing the contents of the blob).","argline":"git_blob *blob","line":65,"args":[{"type":"git_blob *","comment":"pointer to the blob","name":"blob"}],"rawComments":"\n Get a read-only buffer with the raw content of a blob.\n\n A pointer to the raw content of a blob is returned;\n this pointer is owned internally by the object and shall\n not be free'd. The pointer may be invalidated at a later\n time (e.g. when changing the contents of the blob).\n\n @param blob pointer to the blob\n @return the pointer; NULL if the blob has no contents\n\n","lineto":76,"description":"Get a read-only buffer with the raw content of a blob."},"git_tree_add_entry":{"return":{"type":"int","comment":"0 on success; otherwise error code"},"group":"tree","file":"tree.h","sig":"git_tree *::const git_oid *::const char *::int","comments":"This will mark the tree as modified; the new entry will\n be written back to disk on the next git_object_write()\n\n @iparam id OID for the tree entry","argline":"git_tree *tree, const git_oid *id, const char *filename, int attributes","line":110,"args":[{"type":"git_tree *","comment":"Tree object to store the entry","name":"tree"},{"type":"const git_oid *","comment":"","name":"id"},{"type":"const char *","comment":"Filename for the tree entry","name":"filename"},{"type":"int","comment":"UNIX file attributes for the entry","name":"attributes"}],"rawComments":"\n Add a new entry to a tree.\n\n This will mark the tree as modified; the new entry will\n be written back to disk on the next git_object_write()\n\n @param tree Tree object to store the entry\n @iparam id OID for the tree entry\n @param filename Filename for the tree entry\n @param attributes UNIX file attributes for the entry\n @return 0 on success; otherwise error code\n\n","lineto":122,"description":"Add a new entry to a tree."},"git_tree_entry_attributes":{"return":{"type":"unsigned int","comment":"attributes as an integer"},"group":"tree","file":"tree.h","sig":"git_tree_entry *","comments":"","argline":"git_tree_entry *entry","line":80,"args":[{"type":"git_tree_entry *","comment":"a tree entry","name":"entry"}],"rawComments":"\n Get the UNIX file attributes of a tree entry\n @param entry a tree entry\n @return attributes as an integer\n\n","lineto":85,"description":"Get the UNIX file attributes of a tree entry"},"git_tree_new":{"return":{"type":"int","comment":"0 on success; error code otherwise"},"group":"tree","file":"tree.h","sig":"git_tree **::git_repository *","comments":"The tree object must be manually filled using\n setter methods before it can be written to its\n repository.","argline":"git_tree **tree, git_repository *repo","line":36,"args":[{"type":"git_tree **","comment":"pointer to the new tree","name":"tree"},{"type":"git_repository *","comment":"The repository where the object will reside","name":"repo"}],"rawComments":"\n Create a new in-memory git_tree.\n\n The tree object must be manually filled using\n setter methods before it can be written to its\n repository.\n\n @param tree pointer to the new tree\n @param repo The repository where the object will reside\n @return 0 on success; error code otherwise\n\n","lineto":47,"description":"Create a new in-memory git_tree."},"git_tree_lookup":{"return":{"type":"int","comment":"0 on success; error code otherwise"},"group":"tree","file":"tree.h","sig":"git_tree **::git_repository *::const git_oid *","comments":"","argline":"git_tree **tree, git_repository *repo, const git_oid *id","line":24,"args":[{"type":"git_tree **","comment":"pointer to the looked up tree","name":"tree"},{"type":"git_repository *","comment":"the repo to use when locating the tree.","name":"repo"},{"type":"const git_oid *","comment":"identity of the tree to locate.","name":"id"}],"rawComments":"\n Lookup a tree object from the repository.\n The generated tree object is owned by the revision\n repo and shall not be freed by the user.\n\n @param tree pointer to the looked up tree\n @param repo the repo to use when locating the tree.\n @param id identity of the tree to locate.\n @return 0 on success; error code otherwise\n\n","lineto":34,"description":"Lookup a tree object from the repository. The generated tree object is owned by the revision repo and shall not be freed by the user."},"git_commit_new":{"return":{"type":"int","comment":"0 on success; error code otherwise"},"group":"commit","file":"commit.h","sig":"git_commit **::git_repository *","comments":"The commit object must be manually filled using\n setter methods before it can be written to its\n repository.","argline":"git_commit ** commit, git_repository *repo","line":34,"args":[{"type":"git_commit **","comment":"pointer to the new commit","name":"commit"},{"type":"git_repository *","comment":"The repository where the object will reside","name":"repo"}],"rawComments":"\n Create a new in-memory git_commit.\n\n The commit object must be manually filled using\n setter methods before it can be written to its\n repository.\n\n @param commit pointer to the new commit\n @param repo The repository where the object will reside\n @return 0 on success; error code otherwise\n\n","lineto":45,"description":"Create a new in-memory git_commit."},"git_object_write":{"return":{"type":"int","comment":"0 on success; otherwise an error code"},"group":"object","file":"repository.h","sig":"git_object *","comments":"The object will be written to its corresponding\n repository.\n\n If the object has no changes since it was first\n read from the repository, no actions will take place.\n\n If the object has been modified since it was read from\n the repository, or it has been created from scratch\n in memory, it will be written to the repository and\n its SHA1 ID will be updated accordingly.","argline":"git_object *object","line":103,"args":[{"type":"git_object *","comment":"Git object to write back","name":"object"}],"rawComments":"\n Write back an object to disk.\n\n The object will be written to its corresponding\n repository.\n\n If the object has no changes since it was first\n read from the repository, no actions will take place.\n\n If the object has been modified since it was read from\n the repository, or it has been created from scratch\n in memory, it will be written to the repository and\n its SHA1 ID will be updated accordingly.\n\n @param object Git object to write back\n @return 0 on success; otherwise an error code\n\n","lineto":120,"description":"Write back an object to disk."},"git_commit_add_parent":{"return":{"type":"void","comment":""},"group":"commit","file":"commit.h","sig":"git_commit *::git_commit *","comments":"","argline":"git_commit *commit, git_commit *new_parent","line":96,"args":[{"type":"git_commit *","comment":"the commit object","name":"commit"},{"type":"git_commit *","comment":"the new commit which will be a parent","name":"new_parent"}],"rawComments":"\n Add a new parent commit to an existing commit\n @param commit the commit object\n @param new_parent the new commit which will be a parent\n\n","lineto":101,"description":"Add a new parent commit to an existing commit"},"git_odb_write":{"return":{"type":"int","comment":""},"group":"odb","file":"odb.h","sig":"git_oid *::git_odb *::git_rawobj *","comments":"@return\n - GIT_SUCCESS if the object was written;\n - GIT_ERROR otherwise.","argline":"git_oid *id, git_odb *db, git_rawobj *obj","line":118,"args":[{"type":"git_oid *","comment":"identity of the object written.","name":"id"},{"type":"git_odb *","comment":"database to which the object should be written.","name":"db"},{"type":"git_rawobj *","comment":"object descriptor for the object to write.","name":"obj"}],"rawComments":"\n Write an object to the database.\n\n @param id identity of the object written.\n @param db database to which the object should be written.\n @param obj object descriptor for the object to write.\n @return\n - GIT_SUCCESS if the object was written;\n - GIT_ERROR otherwise.\n\n","lineto":128,"description":"Write an object to the database."},"git_index_entrycount":{"return":{"type":"unsigned int","comment":"integer of count of current entries"},"group":"index","file":"index.h","sig":"git_index *","comments":"","argline":"git_index *index","line":161,"args":[{"type":"git_index *","comment":"an existing index object","name":"index"}],"rawComments":"\n Get the count of entries currently in the index\n\n @param index an existing index object\n @return integer of count of current entries\n\n","lineto":167,"description":"Get the count of entries currently in the index"},"git_revwalk_new":{"return":{"type":"int","comment":"0 on success; error code otherwise"},"group":"revwalk","file":"revwalk.h","sig":"git_revwalk **::git_repository *","comments":"","argline":"git_revwalk **walker, git_repository *repo","line":48,"args":[{"type":"git_revwalk **","comment":"pointer to the new revision walker","name":"walker"},{"type":"git_repository *","comment":"the repo to walk through","name":"repo"}],"rawComments":"\n Allocate a new revision walker to iterate through a repo.\n\n @param walker pointer to the new revision walker\n @param repo the repo to walk through\n @return 0 on success; error code otherwise\n\n","lineto":55,"description":"Allocate a new revision walker to iterate through a repo."},"git_object_type":{"return":{"type":"git_otype","comment":"the object's type"},"group":"object","file":"repository.h","sig":"git_object *","comments":"","argline":"git_object *obj","line":133,"args":[{"type":"git_object *","comment":"the repository object","name":"obj"}],"rawComments":"\n Get the object type of an object\n\n @param obj the repository object\n @return the object's type\n\n","lineto":139,"description":"Get the object type of an object"},"git_index_get":{"return":{"type":"git_index_entry *","comment":"a pointer to the entry; NULL if out of bounds"},"group":"index","file":"index.h","sig":"git_index *::int","comments":"This entry can be modified, and the changes will be written\n back to disk on the next write() call.","argline":"git_index *index, int n","line":149,"args":[{"type":"git_index *","comment":"an existing index object","name":"index"},{"type":"int","comment":"the position of the entry","name":"n"}],"rawComments":"\n Get a pointer to one of the entries in the index\n\n This entry can be modified, and the changes will be written\n back to disk on the next write() call.\n\n @param index an existing index object\n @param n the position of the entry\n @return a pointer to the entry; NULL if out of bounds\n\n","lineto":159,"description":"Get a pointer to one of the entries in the index"},"git_person_time":{"return":{"type":"git_person *person); const char *git_person_email(git_person *person","comment":""},"group":"person","file":"common.h","sig":"git_person *","comments":"","argline":"git_person *person","line":124,"args":[{"type":"git_person *","comment":"","name":"person"}],"rawComments":" Parsed representation of a person ","lineto":129,"description":"Parsed representation of a person"},"git_commit_set_committer":{"return":{"type":"void","comment":""},"group":"commit","file":"commit.h","sig":"git_commit *::const char *::const char *::time_t","comments":"","argline":"git_commit *commit, const char *name, const char *email, time_t time","line":110,"args":[{"type":"git_commit *","comment":"the commit object","name":"commit"},{"type":"const char *","comment":"name of the new committer","name":"name"},{"type":"const char *","comment":"email of the new committer","name":"email"},{"type":"time_t","comment":"time when the committer committed the commit","name":"time"}],"rawComments":"\n Set the committer of a commit\n @param commit the commit object\n @param name name of the new committer\n @param email email of the new committer\n @param time time when the committer committed the commit\n\n","lineto":117,"description":"Set the committer of a commit"},"git_tree_entry_set_name":{"return":{"type":"void","comment":""},"group":"tree","file":"tree.h","sig":"git_tree_entry *::const char *","comments":"This will mark the tree that contains the entry as modified;\n the modified entry will be written back to disk on the next git_object_write()\n\n @param oid new filename for the entry","argline":"git_tree_entry *entry, const char *name","line":161,"args":[{"type":"git_tree_entry *","comment":"Entry object which will be modified","name":"entry"},{"type":"const char *","comment":"","name":"name"}],"rawComments":"\n Change the filename of a tree entry.\n\n This will mark the tree that contains the entry as modified;\n the modified entry will be written back to disk on the next git_object_write()\n\n @param entry Entry object which will be modified\n @param oid new filename for the entry\n\n","lineto":170,"description":"Change the filename of a tree entry."},"git_tag_message":{"return":{"type":"const char *","comment":"message of the tag"},"group":"tag","file":"tag.h","sig":"git_tag *","comments":"","argline":"git_tag *t","line":81,"args":[{"type":"git_tag *","comment":"","name":"t"}],"rawComments":"\n Get the message of a tag\n @param tag a previously loaded tag.\n @return message of the tag\n\n","lineto":86,"description":"Get the message of a tag @param tag a previously loaded tag."},"git_odb__read_packed":{"return":{"type":"int","comment":""},"group":"odb","file":"odb.h","sig":"git_rawobj *::git_odb *::const git_oid *","comments":"If GIT_ENOTFOUND then out->data is set to NULL.\n\n @return\n - GIT_SUCCESS if the object was read.\n - GIT_ENOTFOUND if the object is not in the database.","argline":"git_rawobj *out, git_odb *db, const git_oid *id","line":90,"args":[{"type":"git_rawobj *","comment":"object descriptor to populate upon reading.","name":"out"},{"type":"git_odb *","comment":"database to search for the object in.","name":"db"},{"type":"const git_oid *","comment":"identity of the object to read.","name":"id"}],"rawComments":"\n Read an object from the database using only pack files.\n\n If GIT_ENOTFOUND then out->data is set to NULL.\n\n @param out object descriptor to populate upon reading.\n @param db database to search for the object in.\n @param id identity of the object to read.\n @return\n - GIT_SUCCESS if the object was read.\n - GIT_ENOTFOUND if the object is not in the database.\n\n","lineto":102,"description":"Read an object from the database using only pack files."},"git_commit_set_tree":{"return":{"type":"void","comment":""},"group":"commit","file":"commit.h","sig":"git_commit *::git_tree *","comments":"","argline":"git_commit *commit, git_tree *tree","line":128,"args":[{"type":"git_commit *","comment":"the commit object","name":"commit"},{"type":"git_tree *","comment":"the new tree","name":"tree"}],"rawComments":"\n Set the tree which is pointed to by a commit\n @param commit the commit object\n @param tree the new tree\n\n","lineto":133,"description":"Set the tree which is pointed to by a commit"},"git_blob_rawsize":{"return":{"type":"int","comment":"size on bytes"},"group":"blob","file":"blob.h","sig":"git_blob *","comments":"","argline":"git_blob *blob","line":78,"args":[{"type":"git_blob *","comment":"pointer to the blob","name":"blob"}],"rawComments":"\n Get the size in bytes of the contents of a blob\n\n @param blob pointer to the blob\n @return size on bytes\n\n","lineto":84,"description":"Get the size in bytes of the contents of a blob"},"git_tag_type":{"return":{"type":"git_otype","comment":"type of the tagged object"},"group":"tag","file":"tag.h","sig":"git_tag *","comments":"","argline":"git_tag *t","line":60,"args":[{"type":"git_tag *","comment":"","name":"t"}],"rawComments":"\n Get the type of a tag's tagged object\n @param tag a previously loaded tag.\n @return type of the tagged object\n\n","lineto":65,"description":"Get the type of a tag's tagged object @param tag a previously loaded tag."},"git_revwalk_reset":{"return":{"type":"void","comment":""},"group":"revwalk","file":"revwalk.h","sig":"git_revwalk *","comments":"","argline":"git_revwalk *walker","line":57,"args":[{"type":"git_revwalk *","comment":"handle to reset.","name":"walker"}],"rawComments":"\n Reset the walking machinery for reuse.\n @param walker handle to reset.\n\n","lineto":61,"description":"Reset the walking machinery for reuse."},"git_repository_free":{"return":{"type":"void","comment":""},"group":"repository","file":"repository.h","sig":"git_repository *","comments":"","argline":"git_repository *repo","line":163,"args":[{"type":"git_repository *","comment":"repository handle to close. If NULL nothing occurs.","name":"repo"}],"rawComments":"\n Free a previously allocated repository\n @param repo repository handle to close. If NULL nothing occurs.\n\n","lineto":167,"description":"Free a previously allocated repository"},"git_obj__loose_object_type":{"return":{"type":"int","comment":"true if the type represents a valid loose object type, false otherwise."},"group":"obj","file":"odb.h","sig":"git_otype","comments":"","argline":"git_otype type","line":164,"args":[{"type":"git_otype","comment":"object type to test.","name":"type"}],"rawComments":"\n Determine if the given git_otype is a valid loose object type.\n\n @param type object type to test.\n @return true if the type represents a valid loose object type,\n false otherwise.\n\n","lineto":171,"description":"Determine if the given git_otype is a valid loose object type."},"git_strerror":{"return":{"type":"const char *","comment":"a string explaining the error code"},"group":"errors","file":"errors.h","sig":"int","comments":"","argline":"int num","line":24,"args":[{"type":"int","comment":"The error code to explain","name":"num"}],"rawComments":"\n strerror() for the Git library\n @param num The error code to explain\n @return a string explaining the error code\n\n","lineto":29,"description":"strerror() for the Git library"},"git_index_read":{"return":{"type":"int","comment":"0 on success, otherwise an error code"},"group":"index","file":"index.h","sig":"git_index *","comments":"","argline":"git_index *index","line":89,"args":[{"type":"git_index *","comment":"an existing index object","name":"index"}],"rawComments":"\n Update the contents of an existing index object in memory\n by reading from the hard disk.\n\n @param index an existing index object\n @return 0 on success, otherwise an error code\n\n","lineto":96,"description":"Update the contents of an existing index object in memory by reading from the hard disk."},"git_index_add":{"return":{"type":"int","comment":"0 on success, otherwise an error code"},"group":"index","file":"index.h","sig":"git_index *::const char *::int","comments":"","argline":"git_index *index, const char *path, int stage","line":117,"args":[{"type":"git_index *","comment":"an existing index object","name":"index"},{"type":"const char *","comment":"filename to add","name":"path"},{"type":"int","comment":"stage for the entry","name":"stage"}],"rawComments":"\n Add or update an index entry from a file in disk.\n\n @param index an existing index object\n @param path filename to add\n @param stage stage for the entry\n @return 0 on success, otherwise an error code\n\n","lineto":125,"description":"Add or update an index entry from a file in disk."},"git_commit_message":{"return":{"type":"const char *","comment":"the message of a commit"},"group":"commit","file":"commit.h","sig":"git_commit *","comments":"","argline":"git_commit *commit","line":61,"args":[{"type":"git_commit *","comment":"a previously loaded commit.","name":"commit"}],"rawComments":"\n Get the full message of a commit.\n @param commit a previously loaded commit.\n @return the message of a commit\n\n","lineto":66,"description":"Get the full message of a commit."},"git_index_free":{"return":{"type":"void","comment":""},"group":"index","file":"index.h","sig":"git_index *","comments":"","argline":"git_index *index","line":82,"args":[{"type":"git_index *","comment":"an existing index object","name":"index"}],"rawComments":"\n Free an existing index object.\n\n @param index an existing index object\n\n","lineto":87,"description":"Free an existing index object."},"git_commit_tree":{"return":{"type":"const git_tree *","comment":"the tree of a commit"},"group":"commit","file":"commit.h","sig":"git_commit *","comments":"","argline":"git_commit *commit","line":89,"args":[{"type":"git_commit *","comment":"a previously loaded commit.","name":"commit"}],"rawComments":"\n Get the tree pointed to by a commit.\n @param commit a previously loaded commit.\n @return the tree of a commit\n\n","lineto":94,"description":"Get the tree pointed to by a commit."},"git_commit_id":{"return":{"type":"const git_oid *","comment":"object identity for the commit."},"group":"commit","file":"commit.h","sig":"git_commit *","comments":"","argline":"git_commit *commit","line":47,"args":[{"type":"git_commit *","comment":"a previously loaded commit.","name":"commit"}],"rawComments":"\n Get the id of a commit.\n @param commit a previously loaded commit.\n @return object identity for the commit.\n\n","lineto":52,"description":"Get the id of a commit."},"git_index_open_bare":{"return":{"type":"int","comment":"0 on success; error code otherwise"},"group":"index","file":"index.h","sig":"git_index **::const char *","comments":"Since there is no ODB behind this index, any Index methods\n which rely on the ODB (e.g. index_add) will fail with the\n GIT_EBAREINDEX error code.","argline":"git_index **index, const char *index_path","line":48,"args":[{"type":"git_index **","comment":"the pointer for the new index","name":"index"},{"type":"const char *","comment":"the path to the index file in disk","name":"index_path"}],"rawComments":"\n Create a new Git index object as a memory representation\n of the Git index file in 'index_path', without a repository\n to back it.\n\n Since there is no ODB behind this index, any Index methods\n which rely on the ODB (e.g. index_add) will fail with the\n GIT_EBAREINDEX error code.\n\n @param index the pointer for the new index\n @param index_path the path to the index file in disk\n @return 0 on success; error code otherwise\n\n","lineto":61,"description":"Create a new Git index object as a memory representation of the Git index file in 'index_path', without a repository to back it."},"git_tag_new":{"return":{"type":"int","comment":"0 on success; error code otherwise"},"group":"tag","file":"tag.h","sig":"git_tag **::git_repository *","comments":"The tag object must be manually filled using\n setter methods before it can be written to its\n repository.","argline":"git_tag **tag, git_repository *repo","line":33,"args":[{"type":"git_tag **","comment":"pointer to the new tag","name":"tag"},{"type":"git_repository *","comment":"The repository where the object will reside","name":"repo"}],"rawComments":"\n Create a new in-memory git_tag.\n\n The tag object must be manually filled using\n setter methods before it can be written to its\n repository.\n\n @param tag pointer to the new tag\n @param repo The repository where the object will reside\n @return 0 on success; error code otherwise\n\n","lineto":44,"description":"Create a new in-memory git_tag."},"git_index_open_inrepo":{"return":{"type":"int","comment":"0 on success; error code otherwise"},"group":"index","file":"index.h","sig":"git_index **::git_repository *","comments":"@param index_path the path to the index file in disk","argline":"git_index **index, git_repository *repo","line":63,"args":[{"type":"git_index **","comment":"","name":"index"},{"type":"git_repository *","comment":"the git repo which owns the index","name":"repo"}],"rawComments":"\n Open the Index inside the git repository pointed\n by 'repo'.\n\n @param repo the git repo which owns the index\n @param index_path the path to the index file in disk\n @return 0 on success; error code otherwise\n\n","lineto":71,"description":"Open the Index inside the git repository pointed by 'repo'."},"git_oid_fmt":{"return":{"type":"void","comment":""},"group":"oid","file":"oid.h","sig":"char *::const git_oid *","comments":"","argline":"char *str, const git_oid *oid","line":48,"args":[{"type":"char *","comment":"output hex string; must be pointing at the start of the hex sequence and have at least the number of bytes needed for an oid encoded in hex (40 bytes). Only the oid digits are written; a '\\\\0' terminator must be added by the caller if it is required.","name":"str"},{"type":"const git_oid *","comment":"oid structure to format.","name":"oid"}],"rawComments":"\n Format a git_oid into a hex string.\n @param str output hex string; must be pointing at the start of\n the hex sequence and have at least the number of bytes\n needed for an oid encoded in hex (40 bytes). Only the\n oid digits are written; a '\\\\0' terminator must be added\n by the caller if it is required.\n @param oid oid structure to format.\n\n","lineto":57,"description":"Format a git_oid into a hex string."},"git_tree_entry_name":{"return":{"type":"const char *","comment":"the name of the file"},"group":"tree","file":"tree.h","sig":"git_tree_entry *","comments":"","argline":"git_tree_entry *entry","line":87,"args":[{"type":"git_tree_entry *","comment":"a tree entry","name":"entry"}],"rawComments":"\n Get the filename of a tree entry\n @param entry a tree entry\n @return the name of the file\n\n","lineto":92,"description":"Get the filename of a tree entry"},"git_tree_entry_byname":{"return":{"type":"git_tree_entry *","comment":"the tree entry; NULL if not found"},"group":"tree","file":"tree.h","sig":"git_tree *::const char *","comments":"","argline":"git_tree *tree, const char *filename","line":64,"args":[{"type":"git_tree *","comment":"a previously loaded tree.","name":"tree"},{"type":"const char *","comment":"the filename of the desired entry","name":"filename"}],"rawComments":"\n Lookup a tree entry by its filename\n @param tree a previously loaded tree.\n @param filename the filename of the desired entry\n @return the tree entry; NULL if not found\n\n","lineto":70,"description":"Lookup a tree entry by its filename"}},"files":[{"meta":{"defgroup":"git_blob Git blob load and write routines","ingroup":"Git","file":"git/blob.h","brief":"Git blob load and write routines"},"lines":99,"file":"blob.h","functions":["git_blob_lookup","git_blob_new","git_blob_set_rawcontent_fromfile","git_blob_set_rawcontent","git_blob_rawcontent","git_blob_rawsize","git_blob_writefile"]},{"meta":{"defgroup":"git_commit Git commit parsing, formatting routines","ingroup":"Git","file":"git/commit.h","brief":"Git commit parsing, formatting routines"},"lines":137,"file":"commit.h","functions":["git_commit_lookup","git_commit_new","git_commit_id","git_commit_message_short","git_commit_message","git_commit_time","git_commit_committer","git_commit_author","git_commit_tree","git_commit_add_parent","git_commit_set_message","git_commit_set_committer","git_commit_set_author","git_commit_set_tree"]},{"meta":{"defgroup":"git_common Git common platform definitions","ingroup":"Git","file":"git/common.h","brief":"Git common platform definitions"},"lines":133,"file":"common.h","functions":["__attribute__","__attribute__","git_person_time"]},{"meta":{"defgroup":null,"ingroup":"Git","file":"git/errors.h","brief":"Git error handling routines and variables"},"lines":33,"file":"errors.h","functions":["GIT_EXTERN_TLS","git_strerror"]},{"meta":{"defgroup":"git_index Git index parsing and manipulation routines","ingroup":"Git","file":"git/index.h","brief":"Git index parsing and manipulation routines"},"lines":172,"file":"index.h","functions":["git_index_open_bare","git_index_open_inrepo","git_index_clear","git_index_free","git_index_read","git_index_write","git_index_find","git_index_add","git_index_remove","git_index_insert","git_index_get","git_index_entrycount"]},{"meta":{"defgroup":"git_odb Git object database routines","ingroup":"Git","file":"git/odb.h","brief":"Git object database routines"},"lines":200,"file":"odb.h","functions":["git_odb_open","git_odb_close","git_odb_read","git_odb_read_header","git_odb__read_packed","git_odb__read_loose","git_odb_write","git_obj_close","git_obj_type_to_string","git_obj_string_to_type","git_obj__loose_object_type","git_obj_hash","git_odb_exists"]},{"meta":{"defgroup":"git_oid Git object id routines","ingroup":"Git","file":"git/oid.h","brief":"Git object id routines"},"lines":122,"file":"oid.h","functions":["git_oid_mkstr","git_oid_mkraw","git_oid_fmt","git_oid_pathfmt","git_oid_allocfmt","git_oid_to_string","git_oid_cpy","git_oid_cmp"]},{"meta":{"defgroup":"git_repository Git revision object management routines","ingroup":"Git","file":"git/repository.h","brief":"Git revision object management routines"},"lines":171,"file":"repository.h","functions":["git_repository_open","git_repository_lookup","git_repository_database","git_repository_index","git_repository_newobject","git_object_write","git_object_id","git_object_type","git_object_owner","git_object_free","git_repository_free"]},{"meta":{"defgroup":"git_revwalk Git revision traversal routines","ingroup":"Git","file":"git/revwalk.h","brief":"Git revision traversal routines"},"lines":112,"file":"revwalk.h","functions":["git_revwalk_new","git_revwalk_reset","git_revwalk_push","git_revwalk_hide","git_revwalk_next","git_revwalk_sorting","git_revwalk_free","git_revwalk_repository"]},{"meta":{"defgroup":"git_tag Git tag management","ingroup":"Git","file":"git/tag.h","brief":"Git tag parsing routines"},"lines":120,"file":"tag.h","functions":["git_tag_lookup","git_tag_new","git_tag_id","git_tag_target","git_tag_type","git_tag_name","git_tag_tagger","git_tag_message","git_tag_set_target","git_tag_set_name","git_tag_set_tagger","git_tag_set_message"]},{"meta":{"defgroup":null,"ingroup":null,"file":null,"brief":null},"lines":56,"file":"thread-utils.h","functions":[]},{"meta":{"defgroup":"git_tree Git tree parsing, loading routines","ingroup":"Git","file":"git/tree.h","brief":"Git tree parsing, loading routines"},"lines":185,"file":"tree.h","functions":["git_tree_lookup","git_tree_new","git_tree_id","git_tree_entrycount","git_tree_entry_byname","git_tree_entry_byindex","git_tree_entry_attributes","git_tree_entry_name","git_tree_entry_id","git_tree_add_entry","git_tree_remove_entry_byindex","git_tree_remove_entry_byname","git_tree_entry_set_id","git_tree_entry_set_name","git_tree_entry_set_attributes"]},{"meta":{"defgroup":"git_zlib Git data compression routines","ingroup":"Git","file":"git/zlib.h","brief":"Git data compression routines"},"lines":35,"file":"zlib.h","functions":["deflateBound"]}],"prefix":"src/git","globals":{"GIT_HAS_TLS":{"value":"1","file":"thread-utils.h","line":10},"GIT_SORT_TOPOLOGICAL":{"value":"(1 << 0)","file":"revwalk.h","line":30},"GIT_ENOTOID":{"value":"(GIT_ERROR - 1)","file":"common.h","line":70},"GIT_SORT_NONE":{"value":"(0)","file":"revwalk.h","line":23},"GIT_OID_HEXSZ":{"value":"(GIT_OID_RAWSZ * 2)","file":"oid.h","line":20},"GIT_EINVALIDTYPE":{"value":"(GIT_ERROR - 8)","file":"common.h","line":91},"GIT_EOBJTYPE":{"value":"(GIT_ERROR - 5)","file":"common.h","line":82},"GIT_HAS_PTHREAD":{"value":"1","file":"thread-utils.h","line":11},"GIT_OID_RAWSZ":{"value":"20","file":"oid.h","line":17},"GIT_ERROR":{"value":"-1","file":"common.h","line":67},"GIT_EBUSY":{"value":"(GIT_ERROR - 13)","file":"common.h","line":106},"GIT_EOBJCORRUPTED":{"value":"(GIT_ERROR - 6)","file":"common.h","line":85},"GIT_EBAREINDEX":{"value":"(GIT_ERROR -14)","file":"common.h","line":109},"GIT_EMISSINGOBJDATA":{"value":"(GIT_ERROR - 9)","file":"common.h","line":94},"GIT_ENOMEM":{"value":"(GIT_ERROR - 3)","file":"common.h","line":76},"GIT_ENOTFOUND":{"value":"(GIT_ERROR - 2)","file":"common.h","line":73},"GIT_SUCCESS":{"value":"0","file":"common.h","line":59},"GIT_EFLOCKFAIL":{"value":"(GIT_ERROR - 11)","file":"common.h","line":100},"GIT_EOSERR":{"value":"(GIT_ERROR - 4)","file":"common.h","line":79},"GIT_EZLIB":{"value":"(GIT_ERROR - 12)","file":"common.h","line":103},"GIT_EPACKCORRUPTED":{"value":"(GIT_ERROR - 10)","file":"common.h","line":97},"GIT_ENOTAREPO":{"value":"(GIT_ERROR - 7)","file":"common.h","line":88},"GIT_SORT_REVERSE":{"value":"(1 << 2)","file":"revwalk.h","line":44},"GIT_SORT_TIME":{"value":"(1 << 1)","file":"revwalk.h","line":37}},"groups":[["GIT",["GIT_EXTERN_TLS"]],["blob",["git_blob_lookup","git_blob_new","git_blob_rawcontent","git_blob_rawsize","git_blob_set_rawcontent","git_blob_set_rawcontent_fromfile","git_blob_writefile"]],["commit",["git_commit_add_parent","git_commit_author","git_commit_committer","git_commit_id","git_commit_lookup","git_commit_message","git_commit_message_short","git_commit_new","git_commit_set_author","git_commit_set_committer","git_commit_set_message","git_commit_set_tree","git_commit_time","git_commit_tree"]],["errors",["git_strerror"]],["index",["git_index_add","git_index_clear","git_index_entrycount","git_index_find","git_index_free","git_index_get","git_index_insert","git_index_open_bare","git_index_open_inrepo","git_index_read","git_index_remove","git_index_write"]],["obj",["git_obj__loose_object_type","git_obj_close","git_obj_hash","git_obj_string_to_type","git_obj_type_to_string"]],["object",["git_object_free","git_object_id","git_object_owner","git_object_type","git_object_write"]],["odb",["git_odb__read_loose","git_odb__read_packed","git_odb_close","git_odb_exists","git_odb_open","git_odb_read","git_odb_read_header","git_odb_write"]],["oid",["git_oid_allocfmt","git_oid_cmp","git_oid_cpy","git_oid_fmt","git_oid_mkraw","git_oid_mkstr","git_oid_pathfmt","git_oid_to_string"]],["person",["git_person_time"]],["repository",["git_repository_database","git_repository_free","git_repository_index","git_repository_lookup","git_repository_newobject","git_repository_open"]],["revwalk",["git_revwalk_free","git_revwalk_hide","git_revwalk_new","git_revwalk_next","git_revwalk_push","git_revwalk_repository","git_revwalk_reset","git_revwalk_sorting"]],["tag",["git_tag_id","git_tag_lookup","git_tag_message","git_tag_name","git_tag_new","git_tag_set_message","git_tag_set_name","git_tag_set_tagger","git_tag_set_target","git_tag_tagger","git_tag_target","git_tag_type"]],["tree",["git_tree_add_entry","git_tree_entry_attributes","git_tree_entry_byindex","git_tree_entry_byname","git_tree_entry_id","git_tree_entry_name","git_tree_entry_set_attributes","git_tree_entry_set_id","git_tree_entry_set_name","git_tree_entrycount","git_tree_id","git_tree_lookup","git_tree_new","git_tree_remove_entry_byindex","git_tree_remove_entry_byname"]],["zlib",["deflateBound"]]],"types":[["git_blob",{"type":"struct","value":"git_blob","file":"blob.h","tdef":"typedef","line":17,"used":{"needs":["git_blob_lookup","git_blob_new","git_blob_rawcontent","git_blob_rawsize","git_blob_set_rawcontent","git_blob_set_rawcontent_fromfile"],"returns":[]}}],["git_commit",{"type":"struct","value":"git_commit","file":"commit.h","tdef":"typedef","line":19,"used":{"needs":["git_commit_add_parent","git_commit_author","git_commit_committer","git_commit_id","git_commit_lookup","git_commit_message","git_commit_message_short","git_commit_new","git_commit_set_author","git_commit_set_committer","git_commit_set_message","git_commit_set_tree","git_commit_time","git_commit_tree","git_revwalk_hide","git_revwalk_push"],"returns":["git_revwalk_next"]}}],["git_index",{"type":"struct","value":"git_index","file":"index.h","tdef":"typedef","line":18,"used":{"needs":["git_index_add","git_index_clear","git_index_entrycount","git_index_find","git_index_free","git_index_get","git_index_insert","git_index_open_bare","git_index_open_inrepo","git_index_read","git_index_remove","git_index_write"],"returns":["git_repository_index"]}}],["git_index_entry",{"type":"struct","value":null,"file":"index.h","tdef":"typedef","line":28,"lineto":45,"used":{"needs":["git_index_insert"],"returns":["git_index_get"]},"block":"git_index_time ctime;\ngit_index_time mtime;\n\nuint32_t dev;\nuint32_t ino;\nuint32_t mode;\nuint32_t uid;\nuint32_t gid;\nuint32_t file_size;\n\ngit_oid oid;\n\nuint16_t flags;\nuint16_t flags_extended;\n\nchar *path;\n"}],["git_index_time",{"type":"struct","value":null,"file":"index.h","tdef":"typedef","line":22,"lineto":25,"used":{"needs":[],"returns":[]},"block":"uint32_t seconds;\nuint32_t nanoseconds;\n"}],["git_object",{"type":"struct","value":"git_object","file":"common.h","tdef":"typedef","line":121,"used":{"needs":["git_object_free","git_object_id","git_object_owner","git_object_type","git_object_write","git_repository_lookup","git_repository_newobject","git_tag_set_target"],"returns":["git_tag_target"]}}],["git_odb",{"type":"struct","value":"git_odb","file":"odb.h","tdef":"typedef","line":18,"used":{"needs":["git_odb__read_loose","git_odb__read_packed","git_odb_close","git_odb_exists","git_odb_open","git_odb_read","git_odb_read_header","git_odb_write"],"returns":["git_repository_database"]}}],["git_oid",{"type":"struct","value":null,"file":"oid.h","tdef":"typedef","line":23,"lineto":26,"used":{"needs":["git_blob_lookup","git_blob_writefile","git_commit_lookup","git_obj_hash","git_odb__read_loose","git_odb__read_packed","git_odb_exists","git_odb_read","git_odb_read_header","git_odb_write","git_oid_allocfmt","git_oid_cmp","git_oid_cpy","git_oid_fmt","git_oid_mkraw","git_oid_mkstr","git_oid_pathfmt","git_oid_to_string","git_repository_lookup","git_tag_lookup","git_tree_add_entry","git_tree_entry_set_id","git_tree_lookup"],"returns":["git_commit_id","git_object_id","git_tag_id","git_tree_entry_id","git_tree_id"]},"block":"/** raw binary formatted id */\nunsigned char id[GIT_OID_RAWSZ];\n"}],["git_otype",{"type":"enum","value":null,"file":"odb.h","tdef":"typedef","line":37,"lineto":48,"used":{"needs":["git_obj__loose_object_type","git_obj_type_to_string","git_repository_lookup","git_repository_newobject"],"returns":[]},"block":"GIT_OBJ_ANY = -2,\t\t/**< Object can be any of the following */\nGIT_OBJ_BAD = -1, /**< Object is invalid. */\nGIT_OBJ__EXT1 = 0, /**< Reserved for future use. */\nGIT_OBJ_COMMIT = 1, /**< A commit object. */\nGIT_OBJ_TREE = 2, /**< A tree (directory listing) object. */\nGIT_OBJ_BLOB = 3, /**< A file revision object. */\nGIT_OBJ_TAG = 4, /**< An annotated tag object. */\nGIT_OBJ__EXT2 = 5, /**< Reserved for future use. */\nGIT_OBJ_OFS_DELTA = 6, /**< A delta, base is given by an offset. */\nGIT_OBJ_REF_DELTA = 7, /**< A delta, base is given by object id. */\n"}],["git_person",{"type":"struct","value":"git_person","file":"common.h","tdef":"typedef","line":125,"used":{"needs":["git_person_time"],"returns":["git_commit_author","git_commit_committer","git_person_time","git_tag_tagger"]}}],["git_rawobj",{"type":"struct","value":null,"file":"odb.h","tdef":"typedef","line":51,"lineto":55,"used":{"needs":["git_obj_close","git_obj_hash","git_odb__read_loose","git_odb__read_packed","git_odb_read","git_odb_read_header","git_odb_write"],"returns":[]},"block":"void *data; /**< Raw, decompressed object data. */\nsize_t len; /**< Total number of bytes in data. */\ngit_otype type; /**< Type of this object. */\n"}],["git_repository",{"type":"struct","value":"git_repository","file":"common.h","tdef":"typedef","line":118,"used":{"needs":["git_blob_lookup","git_blob_new","git_blob_writefile","git_commit_lookup","git_commit_new","git_index_open_inrepo","git_repository_database","git_repository_free","git_repository_index","git_repository_lookup","git_repository_newobject","git_repository_open","git_revwalk_new","git_tag_lookup","git_tag_new","git_tree_lookup","git_tree_new"],"returns":["git_object_owner","git_revwalk_repository"]}}],["git_revwalk",{"type":"struct","value":"git_revwalk","file":"revwalk.h","tdef":"typedef","line":46,"used":{"needs":["git_revwalk_free","git_revwalk_hide","git_revwalk_new","git_revwalk_next","git_revwalk_push","git_revwalk_repository","git_revwalk_reset","git_revwalk_sorting"],"returns":[]}}],["git_tag",{"type":"struct","value":"git_tag","file":"tag.h","tdef":"typedef","line":19,"used":{"needs":["git_tag_id","git_tag_lookup","git_tag_message","git_tag_name","git_tag_new","git_tag_set_message","git_tag_set_name","git_tag_set_tagger","git_tag_set_target","git_tag_tagger","git_tag_target","git_tag_type"],"returns":[]}}],["git_tree",{"type":"struct","value":"git_tree","file":"tree.h","tdef":"typedef","line":22,"used":{"needs":["git_commit_set_tree","git_tree_add_entry","git_tree_entry_byindex","git_tree_entry_byname","git_tree_entrycount","git_tree_id","git_tree_lookup","git_tree_new","git_tree_remove_entry_byindex","git_tree_remove_entry_byname"],"returns":["git_commit_tree"]}}],["git_tree_entry",{"type":"struct","value":"git_tree_entry","file":"tree.h","tdef":"typedef","line":19,"used":{"needs":["git_tree_entry_attributes","git_tree_entry_id","git_tree_entry_name","git_tree_entry_set_attributes","git_tree_entry_set_id","git_tree_entry_set_name"],"returns":["git_tree_entry_byindex","git_tree_entry_byname"]}}]]} \ No newline at end of file