mirror of https://github.com/lukechilds/node.git
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.
11 lines
284 B
11 lines
284 B
9 years ago
|
#include "string_search.h"
|
||
|
|
||
|
namespace node {
|
||
|
namespace stringsearch {
|
||
|
|
||
|
int StringSearchBase::kBadCharShiftTable[kUC16AlphabetSize];
|
||
|
int StringSearchBase::kGoodSuffixShiftTable[kBMMaxShift + 1];
|
||
|
int StringSearchBase::kSuffixTable[kBMMaxShift + 1];
|
||
|
}
|
||
|
} // namespace node::stringsearch
|