Changeset fcc3cd8 in mainline for uspace/srv/fs/fat/fat_dentry.c


Ignore:
Timestamp:
2011-06-28T07:35:01Z (14 years ago)
Author:
Oleg Romanenko <romanenko.oleg@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4c3c4a5
Parents:
82374b2
Message:

Using new function to convert LFN UTF16 data to UTF8 string
in fat_directory_read()

File:
1 edited

Legend:

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

    r82374b2 rfcc3cd8  
    266266}
    267267
    268 size_t fat_lfn_get_part(const uint16_t *src, size_t src_size, wchar_t *dst, size_t *offset)
     268size_t fat_lfn_get_part(const uint16_t *src, size_t src_size, uint16_t *dst, size_t *offset)
    269269{
    270270        while (src_size!=0 && (*offset)!=0) {
     
    279279}
    280280
    281 size_t fat_lfn_get_entry(const fat_dentry_t *d, wchar_t *dst, size_t *offset)
     281size_t fat_lfn_get_entry(const fat_dentry_t *d, uint16_t *dst, size_t *offset)
    282282{
    283283        fat_lfn_get_part(FAT_LFN_PART3(d), FAT_LFN_PART3_SIZE, dst, offset);
Note: See TracChangeset for help on using the changeset viewer.