]> wimlib.net Git - wimlib/blob - include/wimlib/assert.h
tagged_items: rename inode_set_tagged_data() to inode_set_tagged_item()
[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 */