]> wimlib.net Git - wimlib/blob - include/wimlib/object_id.h
bitops: rename bit scan functions
[wimlib] / include / wimlib / object_id.h
1 #ifndef _WIMLIB_OBJECT_ID_H
2 #define _WIMLIB_OBJECT_ID_H
3
4 #include "wimlib/types.h"
5
6 extern bool
7 inode_has_object_id(const struct wim_inode *inode);
8
9 extern const void *
10 inode_get_object_id(const struct wim_inode *inode, u32 *len_ret);
11
12 extern bool
13 inode_set_object_id(struct wim_inode *inode, const void *object_id, u32 len);
14
15 #endif /* _WIMLIB_OBJECT_ID_H  */