19 lines
508 B
C
19 lines
508 B
C
/* ========================================================================== */
|
|
/* constants.h */
|
|
/* ========================================================================== */
|
|
/**
|
|
* @file constants.h
|
|
* @brief Projektweite Konstanten
|
|
* @author Frederik Beimgraben
|
|
* @author Minh Dan Cam
|
|
* @author Luis Meyer
|
|
* @date 02.07.2025
|
|
*/
|
|
|
|
#ifndef CONSTANTS_H
|
|
#define CONSTANTS_H
|
|
|
|
#define NULL 0
|
|
|
|
#endif /* CONSTANTS_H */
|