Initial commit
This commit is contained in:
commit
edfc5298e1
252 changed files with 93965 additions and 0 deletions
25
source/Core/String.cpp
Normal file
25
source/Core/String.cpp
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
|
||||
#include <cstdio>
|
||||
#include <Spectre/Core/String.h>
|
||||
|
||||
std::string core::to_string(unsigned int value)
|
||||
{
|
||||
char buf[32];
|
||||
sprintf(buf, "%u", value);
|
||||
return std::string(buf);
|
||||
}
|
||||
|
||||
std::string core::to_string(float value)
|
||||
{
|
||||
char buf[32];
|
||||
sprintf(buf, "%f", value);
|
||||
return std::string(buf);
|
||||
}
|
||||
|
||||
std::string core::to_string(float value, unsigned int precision)
|
||||
{
|
||||
char buf[32];
|
||||
std::string format = "%." + to_string(precision) + "f";
|
||||
sprintf(buf, format.c_str(), value);
|
||||
return std::string(buf);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue