Changes in uspace/srv/fs/fat/fat_dentry.c [a21d837:a1d7b4b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/fat/fat_dentry.c
ra21d837 ra1d7b4b 43 43 #include <byteorder.h> 44 44 #include <assert.h> 45 #include <unistd.h>46 #include <sys/types.h>47 45 48 46 /** Compare path component with the name read from the dentry. … … 233 231 /** Get number of bytes in a string with size limit. 234 232 * 235 * @param str NULL-terminated (or not) string. The pointer comes from a packed 236 * structure and as such is expected to be unaligned. 233 * @param str NULL-terminated (or not) string. 237 234 * @param size Maximum number of bytes to consider. 238 235 * … … 240 237 * 241 238 */ 242 size_t fat_lfn_str_nlength(const u naligned_uint16_t *str, size_t size)239 size_t fat_lfn_str_nlength(const uint16_t *str, size_t size) 243 240 { 244 241 size_t offset = 0;
Note:
See TracChangeset
for help on using the changeset viewer.