Merge d3da16b7cc15676d9ec18e2395c0c3886722c7c3 into d7ae12ae71dfd6ab2997527d295014a8996fa0f9

This commit is contained in:
Renáta Hodován 2026-03-28 18:02:56 +00:00 committed by GitHub
commit edbf828c2f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -12,11 +12,23 @@
See the License for the specific language governing permissions and
limitations under the License.
*/
#ifndef FUZZ_COMMON_H
#define FUZZ_COMMON_H
#include "quickjs.h"
#include "quickjs-libc.h"
#ifdef __cplusplus
extern "C" {
#endif
static int nbinterrupts = 0;
void reset_nbinterrupts();
void test_one_input_init(JSRuntime *rt, JSContext *ctx);
#ifdef __cplusplus
} /* extern "C" { */
#endif
#endif /* FUZZ_COMMON_H */