From e397ff7024293223f48f235fcf072fc526cae7af Mon Sep 17 00:00:00 2001 From: Lars Hjemli Date: Thu, 25 Oct 2007 09:30:06 +0200 Subject: Add functions and types for ref lists This adds two structs, refinfo and reflist, and functions for building a list of refs. Signed-off-by: Lars Hjemli --- cgit.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'cgit.h') diff --git a/cgit.h b/cgit.h index e96311f..75e919b 100644 --- a/cgit.h +++ b/cgit.h @@ -98,6 +98,21 @@ struct taginfo { char *msg; }; +struct refinfo { + const char *refname; + struct object *object; + union { + struct taginfo *tag; + struct commitinfo *commit; + }; +}; + +struct reflist { + struct refinfo **refs; + int alloc; + int count; +}; + extern const char *cgit_version; extern struct repolist cgit_repolist; @@ -162,6 +177,10 @@ extern int chk_non_negative(int result, char *msg); extern int hextoint(char c); extern char *trim_end(const char *str, char c); +extern void cgit_add_ref(struct reflist *list, struct refinfo *ref); +extern int cgit_refs_cb(const char *refname, const unsigned char *sha1, + int flags, void *cb_data); + extern void *cgit_free_commitinfo(struct commitinfo *info); extern int cgit_diff_files(const unsigned char *old_sha1, -- cgit v1.2.3-70-g09d2 slogtreecommitdiff
Commit message (Expand)AuthorFilesLines
2006-12-11Move functions for repolist output into ui-repolist.cLars Hjemli5-70/+90
2006-12-11Move common output-functions into ui-shared.cLars Hjemli4-82/+99
2006-12-11Rename config.c to parsing.c + move cgit_parse_query from cgit.c to parsing.cLars Hjemli4-28/+29
2006-12-11Avoid infinite loops in caching layerLars Hjemli3-14/+31
2006-12-11Let 'make install' clear all cachefilesLars Hjemli1-0/+2
2006-12-11Fix cache algorithm loopholeLars Hjemli3-11/+16
2006-12-10Add version identifier in generated filesLars Hjemli2-9/+14
2006-12-10Add license file and copyright noticesLars Hjemli5-0/+372
2006-12-10Add caching infrastructureLars Hjemli9-28/+353