20 lines
331 B
C
20 lines
331 B
C
/**
|
|
*
|
|
* @file macros.h
|
|
* @author Alexandre Sollier
|
|
* @date Janvier 2020
|
|
* @version 1.0
|
|
* @brief Macros utiles
|
|
*
|
|
**/
|
|
|
|
#ifndef MACROS_H
|
|
#define MACROS_H
|
|
|
|
/**
|
|
* @brief Une macro permettant de marquer explicitement un paramètre de fonction comme étant inutilisé
|
|
*/
|
|
#define UNUSED(x) (void)(x)
|
|
|
|
#endif // MACROS_H
|