reorganized test files

This commit is contained in:
mdev9
2024-02-13 16:31:23 +01:00
parent 6ee8507cae
commit a91ff4750d
3 changed files with 0 additions and 0 deletions

20
other/test2.c Executable file
View File

@ -0,0 +1,20 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* test2.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tomoron <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/02/07 13:30:04 by tomoron #+# #+# */
/* Updated: 2024/02/09 16:42:59 by tomoron ### ########.fr */
/* */
/* ************************************************************************** */
#include <stdlib.h>
#include <stdio.h>
int main(int argc, char **argv)
{
if (argc == 2)
return (atoi(argv[1]));
return (0);
}