fix: made all includes relatives for the wellbeing of all LSPs seeing this project
This commit is contained in:
parent
71e58e38b8
commit
b5b40f303c
5 changed files with 9 additions and 9 deletions
|
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
// === Static variables
|
// === Static variables
|
||||||
|
|
||||||
#include "utils/args/args.h"
|
#include "../utils/args/args.h"
|
||||||
|
|
||||||
static struct iob_context context;
|
static struct iob_context context;
|
||||||
static FILE *input = NULL;
|
static FILE *input = NULL;
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
||||||
#include "utils/args/args.h"
|
#include "../utils/args/args.h"
|
||||||
|
|
||||||
// Error codes
|
// Error codes
|
||||||
#define IOB_ERROR_GENERIC -1
|
#define IOB_ERROR_GENERIC -1
|
||||||
|
|
|
||||||
|
|
@ -7,8 +7,8 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include "io_backend/io_backend.h"
|
#include "../io_backend/io_backend.h"
|
||||||
#include "utils/string_utils/string_utils.h"
|
#include "../utils/string_utils/string_utils.h"
|
||||||
|
|
||||||
// ######## STATIC FUNCTIONS ##############
|
// ######## STATIC FUNCTIONS ##############
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,9 +6,9 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include "lexer/lexer.h"
|
#include "../lexer/lexer.h"
|
||||||
#include "parser/parsing_utils.h"
|
#include "../parser/parsing_utils.h"
|
||||||
#include "utils/lists/lists.h"
|
#include "../utils/lists/lists.h"
|
||||||
|
|
||||||
// === Static functions
|
// === Static functions
|
||||||
// ...
|
// ...
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
#ifndef PARSER_H
|
#ifndef PARSER_H
|
||||||
#define PARSER_H
|
#define PARSER_H
|
||||||
|
|
||||||
#include "lexer/lexer.h"
|
#include "../lexer/lexer.h"
|
||||||
#include "utils/ast/ast.h"
|
#include "../utils/ast/ast.h"
|
||||||
|
|
||||||
/* @brief Builds the AST representation of the next command to execute.
|
/* @brief Builds the AST representation of the next command to execute.
|
||||||
*
|
*
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue