Changeset 6d4d883 in mainline for uspace/srv/fs/mfs/mfs_utils.c
- Timestamp:
- 2011-10-14T19:39:02Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2ac7af3
- Parents:
- 9269c88
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/mfs/mfs_utils.c
r9269c88 r6d4d883 34 34 #include "mfs.h" 35 35 36 uint16_t conv16(bool native, uint16_t n) 36 uint16_t 37 conv16(bool native, uint16_t n) 37 38 { 38 39 if (native) … … 42 43 } 43 44 44 uint32_t conv32(bool native, uint32_t n) 45 uint32_t 46 conv32(bool native, uint32_t n) 45 47 { 46 48 if (native) … … 50 52 } 51 53 52 uint64_t conv64(bool native, uint64_t n) 54 uint64_t 55 conv64(bool native, uint64_t n) 53 56 { 54 57 if (native)
Note:
See TracChangeset
for help on using the changeset viewer.