kodovani (splint mrdka)

This commit is contained in:
tovjemam 2025-01-04 22:24:52 +01:00
parent 01ee2257a4
commit 82e865e0d4
9 changed files with 117 additions and 119 deletions

View File

@ -1,4 +1,4 @@
#ifndef ERRORS_H
#ifndef ERRORS_H
#define ERRORS_H
#include <stdlib.h>

2
lex.c
View File

@ -1,4 +1,4 @@
#include "lex.h"
#include "lex.h"
#include <stdlib.h>
#include <stdio.h>

4
lex.h
View File

@ -1,10 +1,8 @@
#ifndef LEX_H
#ifndef LEX_H
#define LEX_H
#include "errors.h"
#define LEX_DEBUG
/**
* @brief Typ tokenu
*/

View File

@ -1,4 +1,4 @@
#ifndef MATH_FUNCTIONS_H
#ifndef MATH_FUNCTIONS_H
#define MATH_FUNCTIONS_H
#include <stdlib.h>

View File

@ -1,4 +1,4 @@
#include <stdlib.h>
#include <stdlib.h>
#include <stdio.h>
#include <stdarg.h>
#include "parser.h"

View File

@ -1,4 +1,4 @@
#ifndef PARSER_H
#ifndef PARSER_H
#define PARSER_H
#include "tree.h"

View File

@ -11,4 +11,4 @@ struct graph_range {
void ps_generate_graph(FILE *file, const struct expr_node *node, const struct graph_range *range, const char *function);
#endif
#endif /* PS_GRAPH_H */

2
tree.h
View File

@ -1,4 +1,4 @@
#ifndef TREE_H
#ifndef TREE_H
#define TREE_H
#include "lex.h"