Searched refs:msdos (Results 1 - 2 of 2) sorted by relevance

/haiku/src/add-ons/kernel/file_systems/fat/
H A Dencodings.h29 status_t msdos_to_utf8(uchar *msdos, uchar *utf8, uint32 utf8len,
H A Dencodings.cpp1504 status_t msdos_to_utf8(uchar *msdos, uchar *utf8, uint32 utf8len, uint8 toLower) argument
1513 if (msdos[i] == ' ')
1515 normalized[pos++] = ((i == 0) && (msdos[i] == 5)) ? 0xe5 :
1516 ((toLower & 0x08) ? tolower(msdos[i]) : msdos[i]);
1519 if (msdos[8] != ' ') {
1522 if (msdos[i] == ' ')
1525 = ((toLower & 0x10) ? tolower(msdos[i]) : msdos[i]);

Completed in 92 milliseconds