fork of https://github.com/oxigraph/rocksdb and https://github.com/facebook/rocksdb for nextgraph and oxigraph
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
265 B
13 lines
265 B
12 years ago
|
// 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_
|