]> wimlib.net Git - wimlib/blobdiff - include/wimlib/util.h
update; add lzms_decompress() stub
[wimlib] / include / wimlib / util.h
index 7bc8359cf61f76f7e07a400c316fb150e61a5d9f..cd0d599f28875596f059b517da55bfd67e37dbc2 100644 (file)
 
 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
 
+/* Maximum number of array elements to allocate on the stack (used in various
+ * places when large temporary buffers are needed).  */
+#define STACK_MAX 32768
+
 #ifdef ENABLE_CUSTOM_MEMORY_ALLOCATOR
 extern void *
 wimlib_malloc(size_t) _malloc_attribute;
@@ -121,6 +125,13 @@ bsr32(u32 n)
 #endif
 }
 
+static inline bool
+is_power_of_2(unsigned long n)
+{
+       return (n != 0 && (n & (n - 1)) == 0);
+
+}
+
 static inline u64
 hash_u64(u64 n)
 {