The unified diff between revisions [84c381b3..] 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 [d6dc7ff5ee1cafd2bf969eb316607ff81cabfbb7]
#    to [6e44cb37e371bc52fb831a5cbc9ec6ba8a1889e1]
#
============================================================
--- include/parsing.h	d6dc7ff5ee1cafd2bf969eb316607ff81cabfbb7
+++ include/parsing.h	6e44cb37e371bc52fb831a5cbc9ec6ba8a1889e1
@@ -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);

 }