comparison Core/Toolbox.h @ 453:30086c1aca30

endianness
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 04 Jul 2013 14:29:44 +0200
parents d2c69150a979
children c9a5d72f8481
comparison
equal deleted inserted replaced
452:80f7539147a2 453:30086c1aca30
29 * along with this program. If not, see <http://www.gnu.org/licenses/>. 29 * along with this program. If not, see <http://www.gnu.org/licenses/>.
30 **/ 30 **/
31 31
32 32
33 #pragma once 33 #pragma once
34
35 #include "Enumerations.h"
34 36
35 #include <stdint.h> 37 #include <stdint.h>
36 #include <vector> 38 #include <vector>
37 #include <string> 39 #include <string>
38 40
99 101
100 std::string GetNowIsoString(); 102 std::string GetNowIsoString();
101 103
102 // In-place percent-decoding for URL 104 // In-place percent-decoding for URL
103 void UrlDecode(std::string& s); 105 void UrlDecode(std::string& s);
106
107 Endianness DetectEndianness();
104 } 108 }
105 } 109 }