cGit-UI for Git Repositories

cGit-UI – is a web interface for Git Repositories. cGit CGI script is writen in C and therefore it's fast enough

12 Commits   0 Branches   1 Tag
Index: html.h
===================================================================
--- html.h	(nonexistent)
+++ html.h	(revision 5)
@@ -0,0 +1,25 @@
+
+#ifndef    __HTML_H
+#define    __HTML_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+
+typedef void (*html_errfunc)( const char *fmt, ... );
+
+extern void html_error( const char *fmt, ... ) __attribute__((format (printf,1,2)));
+extern html_errfunc html_fatal; /* Default Fatal Error Function == html_error() */
+
+
+extern void html_raw( const char *data, size_t size );
+extern void html( const char *txt );
+extern void htmlf( const char *format, ... ) __attribute__((format (printf,1,2)));
+
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif  /* __HTML_H */