Skip to content

Instantly share code, notes, and snippets.

View WolfieWerewolf's full-sized avatar

Geoffrey (Wolfie) Wolf WolfieWerewolf

View GitHub Profile
@fernandomv3
fernandomv3 / UUID.hpp
Last active February 11, 2021 23:43
C++ UUID generator
#ifndef UUID_H
#define UUID_H
#include <string>
#include <cstdlib>
//*Adapted from https://gist.github.com/ne-sachirou/882192
//*std::rand() can be replaced with other algorithms as Xorshift for better perfomance
//*Random seed must be initialized by user