mirror of
https://git.zx2c4.com/cgit
synced 2025-08-30 14:39:34 +02:00
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 <hjemli@gmail.com>
This commit is contained in:
parent
47bae9f58d
commit
e397ff7024
2 changed files with 60 additions and 0 deletions
19
cgit.h
19
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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue