refs.h (420B)
1 #ifndef GITOUT_WRITER_HTML_REFS_H_ 2 #define GITOUT_WRITER_HTML_REFS_H_ 3 4 #include "git/reference.h" 5 #include "git/repo.h" 6 7 typedef struct HtmlRefs HtmlRefs; 8 9 HtmlRefs* html_refs_create(const GitRepo* repo); 10 void html_refs_free(HtmlRefs* refs); 11 void html_refs_begin(HtmlRefs* refs); 12 void html_refs_add_ref(HtmlRefs* refs, const GitReference* ref); 13 void html_refs_end(HtmlRefs* refs); 14 15 #endif // GITOUT_WRITER_HTML_REFS_H_