Changeset b53a733 in mainline for uspace/lib/ext4/libext4_hash.h
- Timestamp:
- 2012-03-07T09:33:14Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e2629b08
- Parents:
- a872fc09
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext4/libext4_hash.h
ra872fc09 rb53a733 35 35 36 36 #include <sys/types.h> 37 38 #define EXT4_HASH_VERSION_LEGACY 0 39 #define EXT4_HASH_VERSION_HALF_MD4 1 40 #define EXT4_HASH_VERSION_TEA 2 41 #define EXT4_HASH_VERSION_LEGACY_UNSIGNED 3 42 #define EXT4_HASH_VERSION_HALF_MD4_UNSIGNED 4 43 #define EXT4_HASH_VERSION_TEA_UNSIGNED 5 44 45 typedef struct ext4_hash_info { 46 uint32_t hash; 47 uint32_t minor_hash; 48 uint32_t hash_version; 49 uint32_t *seed; 50 } ext4_hash_info_t; 37 #include "libext4_types.h" 51 38 52 39 extern int ext4_hash_string(ext4_hash_info_t *, int, const char *);
Note:
See TracChangeset
for help on using the changeset viewer.