-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror_codes.h
23 lines (20 loc) · 1.04 KB
/
error_codes.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* error_codes.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rblondia <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/12/13 16:48:36 by rblondia #+# #+# */
/* Updated: 2022/01/24 10:04:27 by rblondia ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef ERROR_CODES_H
# define ERROR_CODES_H
/**
* Parsing errors
*/
# define MISSING_ARGUMENTS -1
# define TOO_MANY_ARGUMENTS -2
# define WRONG_ARGUMENT_TYPE -3
#endif