rm TokenParser

Signed-off-by: James Cherry <[email protected]>
This commit is contained in:
James Cherry
2026-02-28 15:45:34 -08:00
parent cd21c43693
commit e76f54a068
8 changed files with 41 additions and 200 deletions
+6 -7
View File
@@ -33,6 +33,8 @@
namespace sta {
using StdStringSeq = std::vector<std::string>;
inline bool
stringEq(const char *str1,
const char *str2)
@@ -201,12 +203,9 @@ deleteTmpStrings();
void
trimRight(std::string &str);
using StringVector = std::vector<std::string>;
void
split(const std::string &text,
const std::string &delims,
// Return values.
StringVector &tokens);
// Spit text into delimiter separated tokens and skip whitepace.
StdStringSeq
parseTokens(const std::string &s,
const char delimiter);
} // namespace