Store username in Session.
[dftpd.git] / String.hpp
blob5038292df1e518f8a15bf05dd28576332d3485af
1 #ifndef __DFTPD__STRING_HPP__
2 #define __DFTPD__STRING_HPP__
4 #include <vector>
5 #include <string>
7 std::vector<std::string> Split( const std::string& str );
8 std::vector<std::string> ParseCommand( const std::string& cmd );
9 void ToUpper( std::string& str );
11 #endif