[libFuzzer] add hooks for strstr, strcasestr, strcasecmp, strncasecmp
llvm-svn: 275648
diff --git a/llvm/lib/Fuzzer/FuzzerInternal.h b/llvm/lib/Fuzzer/FuzzerInternal.h
index d27ac86..08f8801 100644
--- a/llvm/lib/Fuzzer/FuzzerInternal.h
+++ b/llvm/lib/Fuzzer/FuzzerInternal.h
@@ -217,6 +217,7 @@
bool UseIndirCalls = true;
bool UseTraces = false;
bool UseMemcmp = true;
+ bool UseMemmem = true;
bool UseFullCoverageSet = false;
bool Reload = true;
bool ShuffleAtStartUp = true;
@@ -293,7 +294,7 @@
void AddWordToManualDictionary(const Word &W);
- void AddWordToAutoDictionary(const Word &W, size_t PositionHint);
+ void AddWordToAutoDictionary(DictionaryEntry DE);
void ClearAutoDictionary();
void PrintRecommendedDictionary();