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: cmpvers.h
===================================================================
--- cmpvers.h	(nonexistent)
+++ cmpvers.h	(revision 5)
@@ -0,0 +1,18 @@
+
+#ifndef _CMP_VERSION_H_
+#define _CMP_VERSION_H_
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+
+extern int cmp_version( const char *s1, const char *s2 );
+extern const char *max_version( const char *s1, const char *s2 );
+
+
+#ifdef __cplusplus
+}  /* ... extern "C" */
+#endif
+
+#endif /* _CMP_VERSION_H_ */