summaryrefslogtreecommitdiff
path: root/defs.h
diff options
context:
space:
mode:
authorkx <kx@radix.pro>2023-03-24 03:51:10 +0300
committerkx <kx@radix.pro>2023-03-24 03:51:10 +0300
commit05d292b208dfe01324826b4c87bbc4da3389a0d5 (patch)
treeb10a2269e9320785f3b61189e75f6778fa167986 /defs.h
parent40ab18a661ff6ada40e73969be293918d346a2f5 (diff)
downloadcgit-ui-05d292b208dfe01324826b4c87bbc4da3389a0d5.tar.xz
Version 0.1.7
Diffstat (limited to 'defs.h')
-rw-r--r--defs.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/defs.h b/defs.h
new file mode 100644
index 0000000..bf7d240
--- /dev/null
+++ b/defs.h
@@ -0,0 +1,40 @@
+
+#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
+
+
+#if !defined( min )
+#define min(a,b) ({ typeof (a) _a = (a); typeof (b) _b = (b); _a < _b ? _a : _b; })
+#endif
+#if !defined( max )
+#define max(a,b) ({ typeof (a) _a = (a); typeof (b) _b = (b); _a > _b ? _a : _b; })
+#endif
+
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* __DEFS_H */