Changes in uspace/srv/fs/mfs/mfs_utils.c [6d4d883:7a46bfe] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/mfs/mfs_utils.c
r6d4d883 r7a46bfe 34 34 #include "mfs.h" 35 35 36 uint16_t 37 conv16(bool native, uint16_t n) 36 uint16_t conv16(bool native, uint16_t n) 38 37 { 39 38 if (native) … … 43 42 } 44 43 45 uint32_t 46 conv32(bool native, uint32_t n) 44 uint32_t conv32(bool native, uint32_t n) 47 45 { 48 46 if (native) … … 52 50 } 53 51 54 uint64_t 55 conv64(bool native, uint64_t n) 52 uint64_t conv64(bool native, uint64_t n) 56 53 { 57 54 if (native)
Note:
See TracChangeset
for help on using the changeset viewer.