The unified diff between revisions [5ac60dc5..] and [13704fef..] is displayed below. It can also be downloaded as a raw diff.
This diff has been restricted to the following files: 'include/parsing.h'
#
#
# patch "include/parsing.h"
# from [461ef25f0cb18bb10c980d97d9fb0351081b2310]
# to [6e44cb37e371bc52fb831a5cbc9ec6ba8a1889e1]
#
============================================================
--- include/parsing.h 461ef25f0cb18bb10c980d97d9fb0351081b2310
+++ include/parsing.h 6e44cb37e371bc52fb831a5cbc9ec6ba8a1889e1
@@ -1,6 +1,6 @@
/*************************************************
* Parser Functions Header File *
-* (C) 1999-2007 The Botan Project *
+* (C) 1999-2007 Jack Lloyd *
*************************************************/
#ifndef BOTAN_PARSER_H__
@@ -15,23 +15,24 @@ namespace Botan {
/*************************************************
* String Parsing Functions *
*************************************************/
-std::vector<std::string> parse_algorithm_name(const std::string&);
-std::vector<std::string> split_on(const std::string&, char);
-std::vector<u32bit> parse_asn1_oid(const std::string&);
-bool x500_name_cmp(const std::string&, const std::string&);
-u32bit parse_expr(const std::string&);
+BOTAN_DLL std::vector<std::string> parse_algorithm_name(const std::string&);
+BOTAN_DLL std::vector<std::string> split_on(const std::string&, char);
+BOTAN_DLL std::vector<u32bit> parse_asn1_oid(const std::string&);
+BOTAN_DLL bool x500_name_cmp(const std::string&, const std::string&);
/*************************************************
* String/Integer Conversions *
*************************************************/
-std::string to_string(u64bit, u32bit = 0);
-u32bit to_u32bit(const std::string&);
+BOTAN_DLL std::string to_string(u64bit, u32bit = 0);
+BOTAN_DLL u32bit to_u32bit(const std::string&);
+BOTAN_DLL u32bit timespec_to_u32bit(const std::string& timespec);
+
/*************************************************
* String/Network Address Conversions *
*************************************************/
-u32bit string_to_ipv4(const std::string&);
-std::string ipv4_to_string(u32bit);
+BOTAN_DLL u32bit string_to_ipv4(const std::string&);
+BOTAN_DLL std::string ipv4_to_string(u32bit);
}