├── .gitignore ├── ReadMe.md ├── functions.py ├── inputs.py ├── main_template.c ├── run.py ├── run.sh └── tests.py /.gitignore: -------------------------------------------------------------------------------- 1 | a.out* 2 | main.c 3 | libft.* 4 | __pycache__ 5 | tests/ 6 | -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t0mm4rx/libftdestructor/HEAD/ReadMe.md -------------------------------------------------------------------------------- /functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t0mm4rx/libftdestructor/HEAD/functions.py -------------------------------------------------------------------------------- /inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t0mm4rx/libftdestructor/HEAD/inputs.py -------------------------------------------------------------------------------- /main_template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t0mm4rx/libftdestructor/HEAD/main_template.c -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t0mm4rx/libftdestructor/HEAD/run.py -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | python3 run.py $1 $2 3 | -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t0mm4rx/libftdestructor/HEAD/tests.py --------------------------------------------------------------------------------