blob: e4594dc0c1a5d07d652fce54abb49771487076cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil; -*- */
/*
* SPDX-License-Identifier: MIT OR LGPL-2.0-or-later
* SPDX-FileCopyrightText: 2008 litl, LLC
*/
#ifndef GJS_MEM_H_
#define GJS_MEM_H_
#if !defined(INSIDE_GJS_H) && !defined(GJS_COMPILATION)
# error "Only <gjs/gjs.h> can be included directly."
#endif
#include <stdbool.h> /* IWYU pragma: keep */
#include <glib.h>
#include "gjs/macros.h"
G_BEGIN_DECLS
GJS_EXPORT
void gjs_memory_report(const char *where,
bool die_if_leaks);
G_END_DECLS
#endif // GJS_MEM_H_
|