Changeset fde8a27 in mainline for uspace/srv/fs/minixfs/mfs_utils.h
- Timestamp:
- 2011-03-28T19:17:31Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1f1cc9d
- Parents:
- ef76d72
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/minixfs/mfs_utils.h
ref76d72 rfde8a27 36 36 #include <sys/types.h> 37 37 #include <bool.h> 38 #include "mfs.h" 38 39 39 uint16_t conv16(bool native, uint16_t n); 40 uint32_t conv32(bool native, uint32_t n); 41 uint64_t conv64(bool native, uint64_t n); 42 int read_ind_block(block_t *b, struct mfs_instance *inst, uint32_t block); 40 extern uint16_t 41 conv16(bool native, uint16_t n); 42 43 extern uint32_t 44 conv32(bool native, uint32_t n); 45 46 extern uint64_t 47 conv64(bool native, uint64_t n); 48 49 extern int 50 read_ind_block(void *data, struct mfs_instance *inst, 51 uint32_t block, mfs_version_t version); 43 52 44 53 #endif
Note:
See TracChangeset
for help on using the changeset viewer.