pushswap/printf/tests/src/realretstringstar.c

20 lines
1019 B
C
Raw Normal View History

2023-03-07 05:42:47 +01:00
/* ************************************************************************** */
/* */
/* .--. _ */
/* realretstring.c |o_o || | */
/* |:_/ || |_ _ ___ __ */
/* By: houtworm <codam@houtworm.net> // \ \ __| | | \ \/ / */
/* (| | )|_| |_| |> < */
/* Created: 2023/02/25 17:07:23 by houtworm /'\_ _/`\__|\__,_/_/\_\ */
/* Updated: 2023/02/25 18:55:46 by houtworm \___)=(___/ */
/* */
/* ************************************************************************** */
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char **argv)
{
return (printf(argv[1], atoi(argv[2]), argv[3]));
}