summaryrefslogtreecommitdiff
path: root/include/util/StringUtils.hpp
blob: af8e82f1213db2fd5aed2819c8459a8b23eb4af6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __UTIL_STRING_UTILS_H
#define __UTIL_STRING_UTILS_H

#include <string>
#include <vector>

#include "util/UtilExportable.hpp"

UTIL_DLL_VISIBLE bool stringicasecmp( const std::string &s1, const std::string &s2 );
UTIL_DLL_VISIBLE std::vector<std::string> split( const std::string &s, const std::string &delimiter, bool keepEmpty = true );

#endif