blob: adb1acec77971c21c098db9cf53bc07d503761b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil; -*- */
// SPDX-License-Identifier: MIT OR LGPL-2.0-or-later
// SPDX-FileCopyrightText: 2018 Philip Chimento
#ifndef TEST_GJS_TEST_COMMON_H_
#define TEST_GJS_TEST_COMMON_H_
struct JSContext;
char* gjs_test_get_exception_message(JSContext* cx);
#endif // TEST_GJS_TEST_COMMON_H_
|