LearnWithTouch/App/LearnWithTouch_ios/Libraries/libil2cpp/include/os/Locale.h

23 lines
421 B
C
Raw Normal View History

2019-07-01 14:33:21 +02:00
#pragma once
#include <stdint.h>
#include <string>
namespace il2cpp
{
namespace os
{
class Locale
{
public:
static void Initialize();
static void UnInitialize();
static std::string GetLocale();
#if IL2CPP_SUPPORT_LOCALE_INDEPENDENT_PARSING
static double DoubleParseLocaleIndependentImpl(char *ptr, char** endptr);
#endif
};
} /* namespace os */
} /* namespace il2cpp */