summaryrefslogtreecommitdiff
path: root/node/Utils.hpp
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2016-11-18 15:49:28 -0800
committerAdam Ierymenko <adam.ierymenko@gmail.com>2016-11-18 15:49:28 -0800
commitccdd4ffda70a35219fae1cdce1306f3d4ebd8dc9 (patch)
treedabf33f54a180293cd44961a9b9b557fe8fae4de /node/Utils.hpp
parent673c0c811ea443c217b3a4ca17eeaed3ab596501 (diff)
downloadinfinitytier-ccdd4ffda70a35219fae1cdce1306f3d4ebd8dc9.tar.gz
infinitytier-ccdd4ffda70a35219fae1cdce1306f3d4ebd8dc9.zip
Move split() to OSUtils since it is not used in core.
Diffstat (limited to 'node/Utils.hpp')
-rw-r--r--node/Utils.hpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/node/Utils.hpp b/node/Utils.hpp
index cfe56501..48c43da3 100644
--- a/node/Utils.hpp
+++ b/node/Utils.hpp
@@ -112,17 +112,6 @@ public:
static void getSecureRandom(void *buf,unsigned int bytes);
/**
- * Split a string by delimiter, with optional escape and quote characters
- *
- * @param s String to split
- * @param sep One or more separators
- * @param esc Zero or more escape characters
- * @param quot Zero or more quote characters
- * @return Vector of tokens
- */
- static std::vector<std::string> split(const char *s,const char *const sep,const char *esc,const char *quot);
-
- /**
* Tokenize a string (alias for strtok_r or strtok_s depending on platform)
*
* @param str String to split