1
0
Fork 0

Improve compliance when printing drive labels

This commit is contained in:
krcroft 2020-01-19 21:53:42 -08:00 committed by Patryk Obara
parent 508d338c27
commit c7484ceaaa
5 changed files with 31 additions and 8 deletions

View file

@ -30,6 +30,7 @@
bool WildFileCmp(const char * file, const char * wild);
void Set_Label(char const * const input, char * const output, bool cdrom);
std::string To_Label(const char* name);
class DriveManager {
public:

View file

@ -93,5 +93,7 @@ Bits ConvHexWord(char * word);
void trim(std::string& str);
void upcase(std::string &str);
void lowcase(std::string &str);
void strip_punctuation(std::string &str);
#endif