#include "PrismPrinter.h" #include <algorithm> std::string capitalize(std::string string) { string[0] = std::toupper(string[0]); return string; }