1 // Copyright 2021 The Chromium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef TESTING_LIBFUZZER_FUZZER_SUPPORT_IOS_FUZZER_SUPPORT_H_ 6 #define TESTING_LIBFUZZER_FUZZER_SUPPORT_IOS_FUZZER_SUPPORT_H_ 7 8 namespace ios_fuzzer { 9 10 // Launches an iOS app that runs libFuzzer with given args. 11 void RunFuzzerFromIOSApp(int argc, char* argv[]); 12 13 } // namespace ios_fuzzer 14 15 #endif // TESTING_LIBFUZZER_FUZZER_SUPPORT_IOS_FUZZER_SUPPORT_H_ 16