add bounds checking

This commit is contained in:
2025-10-03 22:17:07 +02:00
parent 89b4dfa3e8
commit 06946c8066
+1 -5
View File
@@ -1,14 +1,10 @@
# Makefile
# Compiler and flags
CC := gcc
CFLAGS := -Wall -Wextra -O2
CFLAGS := -Wall -Wextra -O2 -fsanitize=address
LDFLAGS := -lcriterion
# Output binary
TESTBIN := /tmp/all_tests
# Phony target
.PHONY: test
test: