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.
11 lines
202 B
C++
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
|