refactor-generic-array #9

Merged
laentropia merged 7 commits from refactor-generic-array into main 2026-04-30 10:05:21 -06:00
3 changed files with 2 additions and 1 deletions
Showing only changes of commit 576bcd9504 - Show all commits

View File

@@ -41,6 +41,7 @@ target_include_directories(calculator_lib
# 🔥 aquí está la magia
target_link_libraries(calculator_lib
PUBLIC arena
PUBLIC arraylist
)
add_executable(calculator src/main.c)

View File

@@ -1,6 +1,7 @@
#ifndef LEXER_H
#define LEXER_H
#include "arraylist.h"
#include <stddef.h>
#include <stdbool.h>
#include <stdint.h>

View File

@@ -1,6 +1,5 @@
#include "lexer.h"
#include <ctype.h>
#include <math.h>
#include <stdint.h>
#include <stdlib.h>
#include <strings.h>