https://github.com/facebook/rocksdb
Raw File
Tip revision: fe637231e8206aa05a875fe4cbf6c679ecb398f1 authored by sdong on 31 October 2019, 21:10:18 UTC
[FB Internal] Point to the latest tool chain.
Tip revision: fe63723
string_util.h
// Copyright (c) 2013 Facebook.

#ifndef STORAGE_LEVELDB_UTIL_STRINGUTIL_H_
#define STORAGE_LEVELDB_UTIL_STRINGUTIL_H_

namespace leveldb {

extern std::vector<std::string> stringSplit(std::string arg, char delim);

}

#endif  // STORAGE_LEVELDB_UTIL_STRINGUTIL_H_
back to top