ImagePulser V5.2.4
Simplification des images prises avec une webcam
Chargement...
Recherche...
Aucune correspondance
/Users/vasilisskarleas/Library/Mobile Documents/com~apple~CloudDocs/Documents/University Sorbonne/3rd year/S6/c-project-rob-3-eleves-gr-2-1/Imagination/error.h
Aller à la documentation de ce fichier.
1// #############################################################################
2// # File error.h
3// # Project in C - Polytech Sorbonne - 2023/2024 - S6
4// # Authors: Evinia Anastasopoulou, Yanis Sadoun, Vasileios Filippos Skarleas - All rights reserved.
5// #############################################################################
6
13#ifndef _ERROR_H_
14#define _ERROR_H_
15
16#include <stdio.h>
17#include <stdlib.h>
18
19/* type entier positif */
20typedef unsigned int UINT;
21
26#define FATAL_ERROR(_m_) \
27{ \
28fprintf(stderr, "%s\n", _m_); \
29exit(1); \
30}
31
32#endif
unsigned int UINT
Definition error.h:20