Creating a base toolkit for functions independent from other toolkits

This commit is contained in:
Bruno
2021-04-25 20:09:22 +02:00
parent 129d5445c3
commit 055f5c4c4e
24 changed files with 159 additions and 118 deletions

24
BaseToolkit.h Normal file
View File

@@ -0,0 +1,24 @@
#ifndef BASETOOLKIT_H
#define BASETOOLKIT_H
#include <string>
namespace BaseToolkit
{
// get integer with unique id
uint64_t uniqueId();
// get a transliteration to Latin of any string
std::string transliterate(std::string input);
// get a string to display memory size with unit KB, MB, GB, TB
std::string byte_to_string(long b);
// get a string to display bit size with unit Kbit, MBit, Gbit, Tbit
std::string bits_to_string(long b);
}
#endif // BASETOOLKIT_H