-
Notifications
You must be signed in to change notification settings - Fork 0
/
error.h
22 lines (19 loc) · 1 KB
/
error.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
///////////////////////////////////////////////////////////////////////////////////
// School: Brno University of Technology, Faculty of Information Technology //
// Course: Formal Languages and Compilers //
// Project: IFJ17 //
// Module: Header file of error states //
// Authors: Kristián Liščinský (xlisci01) //
// Matúš Liščinský (xlisci02) //
// Šimon Stupinský (xstupi00) //
// Vladimír Marcin (xmarci10) //
///////////////////////////////////////////////////////////////////////////////////
#ifndef ERROR_H
#define ERROR_H
/**
* @brief Function printing error on stderr according to id
*
* @param[in] id id of error
*/
void print_err(int id);
#endif