The unified diff between revisions [229d3942..] 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 [cb2aa56649d2ce1d1ee8f417bea7f8afd70b826e]
#    to [6e44cb37e371bc52fb831a5cbc9ec6ba8a1889e1]
#
============================================================
--- include/parsing.h	cb2aa56649d2ce1d1ee8f417bea7f8afd70b826e
+++ include/parsing.h	6e44cb37e371bc52fb831a5cbc9ec6ba8a1889e1
@@ -15,22 +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&);
+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);

 }