Changeset 06b0211b in mainline for uspace/srv/fs/fat/fat_dentry.c
- Timestamp:
- 2013-04-29T11:29:45Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- aa2b32c
- Parents:
- ba4799a (diff), df956b9b (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/fat/fat_dentry.c
rba4799a r06b0211b 44 44 #include <assert.h> 45 45 #include <unistd.h> 46 #include <sys/types.h> 46 47 47 48 /** Compare path component with the name read from the dentry. … … 232 233 /** Get number of bytes in a string with size limit. 233 234 * 234 * @param str NULL-terminated (or not) string. 235 * @param str NULL-terminated (or not) string. The pointer comes from a packed 236 * structure and as such is expected to be unaligned. 235 237 * @param size Maximum number of bytes to consider. 236 238 * … … 238 240 * 239 241 */ 240 size_t fat_lfn_str_nlength(const u int16_t *str, size_t size)242 size_t fat_lfn_str_nlength(const unaligned_uint16_t *str, size_t size) 241 243 { 242 244 size_t offset = 0;
Note:
See TracChangeset
for help on using the changeset viewer.