CloverBootloader/rEFIt_UEFI/cpp_foundation/utf8Conversion.h

16 lines
290 B
C
Raw Normal View History

2020-02-24 14:07:24 +01:00
//
// utf8Conversion.hpp
//
// Created by jief the 24 Feb 2020.
//
#ifndef utf816Conversion_hpp
#define utf816Conversion_hpp
#include <posix.h>
2020-02-24 14:07:24 +01:00
UINTN StrLenInWChar(const char *src);
UINTN utf8ToWChar(wchar_t* dst, UINTN dst_max_len, const char *s);
2020-02-24 14:07:24 +01:00
#endif /* utf816Conversion_hpp */