Changeset 3958e315 in mainline for uspace/srv/fs/mfs/mfs_utils.c
- Timestamp:
- 2011-10-15T12:31:30Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e3f7418
- Parents:
- 03f4acf (diff), df3caec5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/mfs/mfs_utils.c
r03f4acf r3958e315 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.