Just starting

This commit is contained in:
lalgarra 2025-10-22 21:49:32 +02:00
commit ab4c94ae74
2 changed files with 128 additions and 0 deletions

22
test001.c Normal file
View file

@ -0,0 +1,22 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* test001.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lalgarra <lalgarra@student.42madrid.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/10/22 20:50:52 by lalgarra #+# #+# */
/* Updated: 2025/10/22 21:12:07 by lalgarra ### ########.fr */
/* */
/* ************************************************************************** */
#include <stdio.h>
#include "get_next_line.h"
int main(int argc, char *argv[])
{
(void) argc;
(void) argv;
printf("get_next_line():%s", get_next_line(0));
return (0);
}