Refactor string-formatting routines to append to an existing string

This commit is contained in:
ISSOtm
2024-03-21 20:21:51 -04:00
committed by Sylvie
parent 52e8e1f9fc
commit 412073774c
4 changed files with 16 additions and 24 deletions

View File

@@ -37,8 +37,8 @@ public:
void useCharacter(int c);
void finishCharacters();
std::string formatString(std::string const &value) const;
std::string formatNumber(uint32_t value) const;
void appendString(std::string &str, std::string const &value) const;
void appendNumber(std::string &str, uint32_t value) const;
};
#endif // RGBDS_FORMAT_SPEC_H