#pragma once #include "memory.hpp" #include "smart_string.hpp" /** * Stops code execution. */ void stop(); /** * Converts a floating point number to a string. * * @param num A floating point number * @param width The desired float width * @param precision The desired float precision * @returns The float as a string. */ unique_ptr floatToStr( float num, unsigned int width = 3, unsigned int precision = 2 );