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 */
20
typedef
unsigned
int
UINT
;
21
26
#define FATAL_ERROR(_m_) \
27
{ \
28
fprintf(stderr, "%s\n", _m_); \
29
exit(1); \
30
}
31
32
#endif
UINT
unsigned int UINT
Definition
error.h:20
Copyright (c) 2023 -
ImagePulser
| All rights reserved
Vasileios Filippos Skarleas, Evanthia Virginia Anastasopoulou, Yanis Sadoun