Home | History | Annotate | Download | only in fxcrt

Lines Matching refs:FX_CHAR

85 int32_t FXSYS_atoi(const FX_CHAR* str) {
86 return FXSYS_StrToInt<int32_t, FX_CHAR>(str);
88 uint32_t FXSYS_atoui(const FX_CHAR* str) {
94 int64_t FXSYS_atoi64(const FX_CHAR* str) {
95 return FXSYS_StrToInt<int64_t, FX_CHAR>(str);
100 const FX_CHAR* FXSYS_i64toa(int64_t value, FX_CHAR* str, int radix) {
101 return FXSYS_IntToStr<int64_t, uint64_t, FX_CHAR*>(value, str, radix);
113 uint32_t FXSYS_GetFullPathName(const FX_CHAR* filename,
115 FX_CHAR* buf,
116 FX_CHAR** filepart) {
208 return FXSYS_IntToStr<int32_t, uint32_t, FX_CHAR*>(value, str, radix);
222 FX_CHAR* buf,
224 const FX_CHAR* default_str,
230 buf[len] = static_cast<FX_CHAR>(wstr[i]);
238 const FX_CHAR* bstr,