aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/main.c b/main.c
index 67e56d4..915ddc0 100644
--- a/main.c
+++ b/main.c
@@ -6,7 +6,7 @@
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/06 18:13:45 by cacharle #+# #+# */
-/* Updated: 2020/02/06 18:59:06 by cacharle ### ########.fr */
+/* Updated: 2020/02/20 01:11:09 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
@@ -79,6 +79,15 @@ int main(int argc, char **argv)
generated_test();
+ // added according to user
+ ASSERT_PRINTF("%.p", NULL);
+ ASSERT_PRINTF("%.0p", NULL);
+ ASSERT_PRINTF("%.2p", NULL);
+ ASSERT_PRINTF("%.3p", NULL);
+ ASSERT_PRINTF("%.4p", NULL);
+ ASSERT_PRINTF("%.5p", NULL);
+ ASSERT_PRINTF("%.6p", NULL);
+ ASSERT_PRINTF("%.7p", NULL);
/* saved_test(); */
return 0;
}