Projet-Systemes-Informatiques/asmTable.h
2023-04-18 16:27:50 +02:00

26 lines
614 B
C

//
// Created by chepycou on 4/18/23.
//
#ifndef PROJET_SYSTEMES_INFORMATIQUES_ASMTABLE_H
#define PROJET_SYSTEMES_INFORMATIQUES_ASMTABLE_H
#define START_TABLE_SIZE 128
#define LINE_MAX_LENGTH 50
/*============================
Array and Reallocation
============================*/
/*reallocates the array with the specified size*/
void reallocateArray(int size);
/*Checks for the length of the array and reallocates if necessary*/
void checkArraySanity();
/* /!\ To be called at the beginning
* Initializes the array of Symbols*/
void initASMTable();
#endif //PROJET_SYSTEMES_INFORMATIQUES_ASMTABLE_H