aboutsummaryrefslogtreecommitdiffstats
path: root/src/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common.h')
-rw-r--r--src/common.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/common.h b/src/common.h
deleted file mode 100644
index 8d4652a3c..000000000
--- a/src/common.h
+++ /dev/null
@@ -1,16 +0,0 @@
-// 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);
-
-inline std::string strip(const std::string& line)
- { std::string s = line; strip(s); return s; }
-
-#endif