| 783 | return NFD_OKAY; |
| 784 | } |
| 785 | nfdresult_t ConvertU8ToNative(const nfdu8char_t* u8Text, FreeCheck_Guard<nfdnchar_t>& nativeText) { |
| 786 | if (u8Text) { |
| 787 | nfdresult_t res = CopyCharToWChar(u8Text, nativeText.data); |
| 788 | if (!res) { |
| 789 | return NFD_ERROR; |
| 790 | } |
| 791 | } |
| 792 | return NFD_OKAY; |
| 793 | } |
| 794 | void NormalizePathSeparator(nfdnchar_t* path) { |
| 795 | if (path) { |
| 796 | for (; *path; ++path) { |
no test coverage detected