/* # ______ ____ ___ # | \/ ____| |___| # | | | \ | | #----------------------------------------------------------------------- # Copyright 2020, tyra - https://github.com/h4570/tyra # Licenced under Apache License 2.0 # Sandro Sobczyński */ #ifndef _TYRA_STRING_ #define _TYRA_STRING_ #include class String { public: static char *createU32ToString(const u32 a); static char *createWithLeadingZeros(const char *a); static char *createCopy(const char *source); static u32 getLength(const char *a); static char *createConcatenated(const char *a, const char *b); static char *createWithoutExtension(const char *source); }; #endif