From f5dfbf6e8be018199c4d57375935fd1f5f3c93bb Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Mon, 6 Mar 2023 05:04:26 +0100 Subject: Add cftw POSIX functions ftw(3) and nftw(3) do not allow passing an opaque pointer to the callback they call, so it forces the use of statically allocated data. ctfw (from "custom ftw") is a custom implementation that solves this, while also removing unneeded stuff. This function will be used by future commits. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 7001c0b..e29c8ac 100644 --- a/Makefile +++ b/Makefile @@ -11,6 +11,7 @@ DEPS = $(OBJECTS:.o=.d) OBJECTS = \ auth.o \ base64.o \ + cftw.o \ handler.o \ html.o \ http.o \ -- cgit v1.2.3