diff options
| -rw-r--r-- | Makefile | 12 | ||||
| -rw-r--r-- | check_leaks.c | 12 | ||||
| -rw-r--r-- | generate.py | 12 | ||||
| -rw-r--r-- | header.h | 12 | ||||
| -rw-r--r-- | helper.c | 12 | ||||
| -rw-r--r-- | main.c | 12 | ||||
| -rw-r--r-- | prettier.py | 12 | ||||
| -rw-r--r-- | save_failed.py | 12 | ||||
| -rw-r--r-- | tests/moulitest_tests.c | 12 | ||||
| -rw-r--r-- | tests/pft_tests.c | 12 | ||||
| -rw-r--r-- | tests/printf_tester_tests.c | 12 | ||||
| -rw-r--r-- | tests/printf_tests_tests.c | 12 | ||||
| -rw-r--r-- | tests/tests.h | 12 |
13 files changed, 156 insertions, 0 deletions
@@ -1,3 +1,15 @@ +# **************************************************************************** # +# # +# ::: :::::::: # +# Makefile :+: :+: :+: # +# +:+ +:+ +:+ # +# By: cacharle <marvin@42.fr> +#+ +:+ +#+ # +# +#+#+#+#+#+ +#+ # +# Created: 2020/02/06 18:13:15 by cacharle #+# #+# # +# Updated: 2020/02/06 18:13:19 by cacharle ### ########.fr # +# # +# **************************************************************************** # + FT_PRINTF_PATH = ../ft_printf CC = gcc diff --git a/check_leaks.c b/check_leaks.c index f8e9941..ff16e9c 100644 --- a/check_leaks.c +++ b/check_leaks.c @@ -1,3 +1,15 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* check_leaks.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/02/06 18:14:36 by cacharle #+# #+# */ +/* Updated: 2020/02/06 18:14:37 by cacharle ### ########.fr */ +/* */ +/* ************************************************************************** */ + #include <limits.h> #include "header.h" diff --git a/generate.py b/generate.py index a08600e..9dc114d 100644 --- a/generate.py +++ b/generate.py @@ -1,3 +1,15 @@ +# **************************************************************************** # +# # +# ::: :::::::: # +# generate.py :+: :+: :+: # +# +:+ +:+ +:+ # +# By: cacharle <marvin@42.fr> +#+ +:+ +#+ # +# +#+#+#+#+#+ +#+ # +# Created: 2020/02/06 18:13:26 by cacharle #+# #+# # +# Updated: 2020/02/06 18:13:28 by cacharle ### ########.fr # +# # +# **************************************************************************** # + import os import sys import argparse @@ -1,3 +1,15 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* header.h :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/02/06 18:13:32 by cacharle #+# #+# */ +/* Updated: 2020/02/06 18:13:33 by cacharle ### ########.fr */ +/* */ +/* ************************************************************************** */ + #ifndef FT_PRINTF_TEST_HEADER_H # define FT_PRINTF_TEST_HEADER_H @@ -1,3 +1,15 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* helper.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/02/06 18:13:38 by cacharle #+# #+# */ +/* Updated: 2020/02/06 18:13:39 by cacharle ### ########.fr */ +/* */ +/* ************************************************************************** */ + #include <stdio.h> #include <unistd.h> #include <fcntl.h> @@ -1,3 +1,15 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* main.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/02/06 18:13:45 by cacharle #+# #+# */ +/* Updated: 2020/02/06 18:13:47 by cacharle ### ########.fr */ +/* */ +/* ************************************************************************** */ + #include <stdio.h> #include "header.h" #include "tests/tests.h" diff --git a/prettier.py b/prettier.py index 439369c..16a10f1 100644 --- a/prettier.py +++ b/prettier.py @@ -1,3 +1,15 @@ +# **************************************************************************** # +# # +# ::: :::::::: # +# prettier.py :+: :+: :+: # +# +:+ +:+ +:+ # +# By: cacharle <marvin@42.fr> +#+ +:+ +#+ # +# +#+#+#+#+#+ +#+ # +# Created: 2020/02/06 18:13:52 by cacharle #+# #+# # +# Updated: 2020/02/06 18:13:54 by cacharle ### ########.fr # +# # +# **************************************************************************** # + import os import sys import re diff --git a/save_failed.py b/save_failed.py index fc2aebf..a6d37ba 100644 --- a/save_failed.py +++ b/save_failed.py @@ -1,3 +1,15 @@ +# **************************************************************************** # +# # +# ::: :::::::: # +# save_failed.py :+: :+: :+: # +# +:+ +:+ +:+ # +# By: cacharle <marvin@42.fr> +#+ +:+ +#+ # +# +#+#+#+#+#+ +#+ # +# Created: 2020/02/06 18:14:52 by cacharle #+# #+# # +# Updated: 2020/02/06 18:14:53 by cacharle ### ########.fr # +# # +# **************************************************************************** # + if __name__ == "__main__": error_lines = [] with open("result.log") as logs: diff --git a/tests/moulitest_tests.c b/tests/moulitest_tests.c index 29977a3..60e69a8 100644 --- a/tests/moulitest_tests.c +++ b/tests/moulitest_tests.c @@ -1,3 +1,15 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* moulitest_tests.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/02/06 18:15:03 by cacharle #+# #+# */ +/* Updated: 2020/02/06 18:15:04 by cacharle ### ########.fr */ +/* */ +/* ************************************************************************** */ + #include <limits.h> #include "../header.h" diff --git a/tests/pft_tests.c b/tests/pft_tests.c index 0c3455f..3ab8083 100644 --- a/tests/pft_tests.c +++ b/tests/pft_tests.c @@ -1,3 +1,15 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* pft_tests.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/02/06 18:15:10 by cacharle #+# #+# */ +/* Updated: 2020/02/06 18:15:11 by cacharle ### ########.fr */ +/* */ +/* ************************************************************************** */ + #include "../header.h" void test_pft_nacked(void) diff --git a/tests/printf_tester_tests.c b/tests/printf_tester_tests.c index bd178e1..7bdf9de 100644 --- a/tests/printf_tester_tests.c +++ b/tests/printf_tester_tests.c @@ -1,3 +1,15 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* printf_tester_tests.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/02/06 18:15:31 by cacharle #+# #+# */ +/* Updated: 2020/02/06 18:15:32 by cacharle ### ########.fr */ +/* */ +/* ************************************************************************** */ + #include <stdlib.h> #include "../header.h" diff --git a/tests/printf_tests_tests.c b/tests/printf_tests_tests.c index 917a65b..efe19a5 100644 --- a/tests/printf_tests_tests.c +++ b/tests/printf_tests_tests.c @@ -1,3 +1,15 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* printf_tests_tests.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/02/06 18:15:38 by cacharle #+# #+# */ +/* Updated: 2020/02/06 18:15:39 by cacharle ### ########.fr */ +/* */ +/* ************************************************************************** */ + #include <stdlib.h> #include "../header.h" diff --git a/tests/tests.h b/tests/tests.h index 8b045e1..e7e48ab 100644 --- a/tests/tests.h +++ b/tests/tests.h @@ -1,3 +1,15 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* tests.h :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/02/06 18:15:44 by cacharle #+# #+# */ +/* Updated: 2020/02/06 18:15:46 by cacharle ### ########.fr */ +/* */ +/* ************************************************************************** */ + #ifndef FT_PRINTF_TEST_TESTS_H # define FT_PRINTF_TEST_TESTS_H |
