20 lines
932 B
C
20 lines
932 B
C
/// @file assert.h
|
|
/// @brief Defines the function and pre-processor macro for assertions.
|
|
/// @copyright (c) 2014-2023 This file is distributed under the MIT License.
|
|
/// See LICENSE.md for details.
|
|
|
|
#pragma once
|
|
|
|
/// @brief Function used to log the information of a failed assertion.
|
|
/// @param assertion The failed assertion.
|
|
/// @param file The file where the assertion is located.
|
|
/// @param function The function where the assertion is.
|
|
/// @param line The line inside the file.
|
|
void __assert_fail(const char *assertion, const char *file, const char *function, unsigned int line);
|
|
|
|
/// @brief Extract the filename from the full path provided by __FILE__.
|
|
#define __FILENAME__ (__builtin_strrchr(__FILE__, '/') ? __builtin_strrchr(__FILE__, '/') + 1 : __FILE__)
|
|
|
|
/// @brief Assert function.
|
|
#define assert(expression) ((expression) ? (void)0 : __assert_fail(#expression, __FILENAME__, __func__, __LINE__))
|