diff options
Diffstat (limited to 'tests/common.h')
-rw-r--r-- | tests/common.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/common.h b/tests/common.h new file mode 100644 index 000000000..4b5a6c3d9 --- /dev/null +++ b/tests/common.h @@ -0,0 +1,13 @@ +// common code for the validation and benchmark code + +#ifndef BOTAN_CHECK_COMMON_H__ +#define BOTAN_CHECK_COMMON_H__ + +#include <string> + +void strip_comments(std::string& line); +void strip_newlines(std::string& line); +void strip(std::string& line); +std::vector<std::string> parse(const std::string& line); + +#endif |