TeaSpeakLibrary/src/misc/rnd.h

8 lines
263 B
C
Raw Normal View History

2019-06-26 16:11:22 -04:00
#pragma once
#include <random>
#include <cstring>
#include <chrono>
extern const char* rnd_string_chars; //"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
extern std::string rnd_string(int length = 20, const char* avariable = rnd_string_chars);