Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/fat/fat_dentry.c

    ra21d837 ra1d7b4b  
    4343#include <byteorder.h>
    4444#include <assert.h>
    45 #include <unistd.h>
    46 #include <sys/types.h>
    4745
    4846/** Compare path component with the name read from the dentry.
     
    233231/** Get number of bytes in a string with size limit.
    234232 *
    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.
    237234 * @param size Maximum number of bytes to consider.
    238235 *
     
    240237 *
    241238 */
    242 size_t fat_lfn_str_nlength(const unaligned_uint16_t *str, size_t size)
     239size_t fat_lfn_str_nlength(const uint16_t *str, size_t size)
    243240{
    244241        size_t offset = 0;
Note: See TracChangeset for help on using the changeset viewer.