]> wimlib.net Git - wimlib/blob - include/wimlib/assert.h
Add wimlib_get_image_property() and wimlib_set_image_property()
[wimlib] / include / wimlib / assert.h
1 #ifndef _WIMLIB_ASSERT_H
2 #define _WIMLIB_ASSERT_H
3
4 #ifdef ENABLE_ASSERTIONS
5 #include <assert.h>
6 #  define wimlib_assert(expr) assert(expr)
7 #else
8 #  define wimlib_assert(expr)
9 #endif
10
11 #endif /* _WIMLIB_ASSERT_H */