ZestCode
 
Loading...
Searching...
No Matches
error.h
Go to the documentation of this file.
1
15#ifndef _PROS_ERROR_H_
16#define _PROS_ERROR_H_
17
18#include "limits.h"
19
20// Different Byte Size Errors
21
24#define PROS_ERR_BYTE (INT8_MAX)
25
28#define PROS_ERR_2_BYTE (INT16_MAX)
29
32#define PROS_ERR (INT32_MAX)
33
36#define PROS_ERR_F (INFINITY)
37
40#define PROS_SUCCESS (1)
41
42#endif