dd8499abad
Signed-off-by: h4570 <sandro.sobczynski@gmail.com>
29 lines
739 B
C++
29 lines
739 B
C++
/*
|
|
# ______ ____ ___
|
|
# | \/ ____| |___|
|
|
# | | | \ | |
|
|
#-----------------------------------------------------------------------
|
|
# Copyright 2020, tyra - https://github.com/h4570/tyra
|
|
# Licenced under Apache License 2.0
|
|
# Sandro Sobczyński <sandro.sobczynski@gmail.com>
|
|
*/
|
|
|
|
#ifndef _TYRA_STRING_
|
|
#define _TYRA_STRING_
|
|
|
|
#include <tamtypes.h>
|
|
|
|
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
|