aboutsummaryrefslogtreecommitdiff
path: root/CPP/Common/Defs.h
diff options
context:
space:
mode:
authorrepo sync <gcondra@google.com>2013-07-26 17:53:31 -0700
committerrepo sync <gcondra@google.com>2013-07-29 11:00:59 -0700
commitbaa3858d3f5d128a5c8466b700098109edcad5f2 (patch)
tree2860fc3eaf476caa6296788b828f296a5ee37486 /CPP/Common/Defs.h
parentdd8f4f771627dacc36cd45f18c2b54f939471065 (diff)
downloadlzma-baa3858d3f5d128a5c8466b700098109edcad5f2.tar.gz
The only change from stock lzma sdk is the removal of two .exe files, which we don't need. Change-Id: I46287cbc416161e93b449761ebe531acd758cf95
Diffstat (limited to 'CPP/Common/Defs.h')
-rwxr-xr-xCPP/Common/Defs.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/CPP/Common/Defs.h b/CPP/Common/Defs.h
new file mode 100755
index 0000000..69b8ece
--- /dev/null
+++ b/CPP/Common/Defs.h
@@ -0,0 +1,20 @@
+// Common/Defs.h
+
+#ifndef __COMMON_DEFS_H
+#define __COMMON_DEFS_H
+
+template <class T> inline T MyMin(T a, T b)
+ { return a < b ? a : b; }
+template <class T> inline T MyMax(T a, T b)
+ { return a > b ? a : b; }
+
+template <class T> inline int MyCompare(T a, T b)
+ { return a < b ? -1 : (a == b ? 0 : 1); }
+
+inline int BoolToInt(bool value)
+ { return (value ? 1: 0); }
+
+inline bool IntToBool(int value)
+ { return (value != 0); }
+
+#endif