cSvn-UI for SVN Repositories

cGit-UI – is a web interface for Subversion (SVN) Repositories. cSvn CGI script is writen in C and therefore it's fast enough

15 Commits   0 Branches   1 Tag
Index: defs.h
===================================================================
--- defs.h	(nonexistent)
+++ defs.h	(revision 5)
@@ -0,0 +1,32 @@
+
+#ifndef    __DEFS_H
+#define    __DEFS_H
+
+
+#ifndef TRUE
+#define TRUE 1
+#endif
+#ifndef FALSE
+#define FALSE 0
+#endif
+
+#ifndef PATH_MAX
+#define PATH_MAX 4096
+#endif
+
+#ifndef PATH_SEP
+#define PATH_SEP ':'
+#endif
+
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif  /* __DEFS_H */