Hayden Hargreaves 39186fad50 (FEAT): Worked on the parser class definition.
There are no implementations yet, just a rough outline and some
comments.

This commit also includes an update to the Makefile to use wild cards
to build the `libs`, which will solve the issue with dynamic updating.
2025-10-14 13:07:55 -07:00

11 lines
202 B
C++

#ifndef UTIL_H
#define UTIL_H
#include <string>
void removeTrailingWhitespace(std::string &input);
void removeLeadingWhitespace(std::string &input);
void removeWhitespace(std::string &input);
#endif