-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfsm.h
39 lines (30 loc) · 973 Bytes
/
fsm.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/**
* * * * * * * * * * * * * * * * * * * * * * * * * * * *
* *
* Projekt IFJ *
* *
* Implementace překladače imperativního jazyka IFJ18. *
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * *
Súbor:
fsm.h
Popis:
Hlavickovy subor pre fsm.c
Autori:
Marek Vaško (xvasko16)
Handzuš Daniel (xhandz01)
Alexaj Adam (xalexa07)
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <limits.h>
#include "return.h"
#include "dstr.h"
#include "token.h"
#include "debug.h"
#ifndef FSM_H
#define FSM_H
int GetToken(DStr_t **DStr, Token_t *token);
#endif