
getSrc
Recursively scans your project directory for *.c and *_bonus.c files, then writes them into convenient SRC and SRC_BONUS lists for your Makefile. Supports excluding directories, custom extensions, and output file naming!
curl 'https://raw.githubusercontent.com/Sandoramix/42cursus/refs/heads/master/utils/getSrc.py' | python3 -grabProtos
Scans your C source files and extracts all function prototypes, perfect for creating header files! Supports filtering static functions, excluding directories, and custom formatting.
curl 'https://raw.githubusercontent.com/Sandoramix/42cursus/refs/heads/master/utils/grabProtos.py' | python3 -proToC
Feed it a header file, and it will generate .c files with skeleton implementations for every function prototype found inside!
curl 'https://raw.githubusercontent.com/Sandoramix/42cursus/refs/heads/master/utils/proToC.py' | python3 -[MAIN] ft_printf
Main for ft_printf
wget 'https://raw.githubusercontent.com/Sandoramix/42cursus/refs/heads/master/tests/ft_printfm.c'