LexLeo 0.0.0-dev+f8e5087-dirty
Technical documentation
Loading...
Searching...
No Matches
lexleo_assert.h
Go to the documentation of this file.
1/* SPDX-License-Identifier: GPL-3.0-or-later
2 * Copyright (C) 2026 Sylvain Labopin
3 */
4
5#ifndef LEXLEO_ASSERT_H
6#define LEXLEO_ASSERT_H
7
8#include <assert.h>
9
10#define LEXLEO_ASSERT(expr) assert(expr)
11
12#endif //LEXLEO_ASSERT_H