#ifndef FCPP_ADVILIB_H #define FCPP_ADVILIB_H #include typedef std::string string; char cInput(); int iInput(); string sInput(); float fInput(); double dInput(); uint32_t ui32Input(); int random(); double randomF(); int randomWithinRange(int range); double randomWithinRange(double range); int randomWithinFixedRange(int start, int range); double randomWithinFixedRange(double start, double range); void asciiList(); #endif