/* Copyright (C) 2021,2022 fef . All rights reserved. */ #pragma once #ifndef NULL # ifdef __cplusplus # define NULL nullptr # else # define NULL ((void *)0) # endif #endif /** @brief For the beloved Go enthusiasts out there */ #define nil NULL