blob: 1ddf4d2e9d90c2cfd6b2f6640e0dfb96788fca35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// common code for the validation and benchmark code
#ifndef BOTAN_CHECK_COMMON_H__
#define BOTAN_CHECK_COMMON_H__
#include <string>
#include "getopt.h"
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
|