Compare commits

...

10 Commits

Author SHA1 Message Date
Timo Schmidt ab5c1430fb Push should work now 2023-04-01 02:33:17 +02:00
Timo Schmidt 4afa529195 Delte 2023-04-01 02:32:34 +02:00
Timo Schmidt 58bdba8a7c Rework 2023-04-01 02:26:30 +02:00
Timo Schmidt b4f9739ec2 Fixes 2023-04-01 02:22:16 +02:00
Timo Schmidt d5d49af2bd Positivity check 2023-04-01 02:18:43 +02:00
Timo Schmidt bfc1e60452 Unncecdseary sols param 2023-04-01 02:18:09 +02:00
Timo Schmidt f6b438c0f8 Unneccesary braces 2023-04-01 02:16:41 +02:00
Timo Schmidt 4d734d0cc8 NEW 2023-04-01 01:03:03 +02:00
Timo Schmidt 7d7ce00fc4 DELTE 2023-04-01 01:02:38 +02:00
Timo Schmidt 2e515f9bbb A 2023-04-01 00:55:27 +02:00
3 changed files with 6 additions and 5 deletions

0
a
View File

View File

@ -6,7 +6,7 @@
/* By: tosuman </var/spool/mail/tosuman> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/03/30 18:07:58 by tosuman #+# #+# */
/* Updated: 2023/03/30 18:07:59 by tosuman ### ########.fr */
/* Updated: 2023/04/01 02:24:34 by tischmid ### ########.fr */
/* */
/* ************************************************************************** */
@ -17,7 +17,7 @@ void ft_putchar(char c)
write(1, &c, 1);
}
void ft_putstr(char *str)
void ft_puts(char *str)
{
while (*str)
ft_putchar(*str++);
@ -26,6 +26,7 @@ void ft_putstr(char *str)
int main(int argc, char **argv)
{
ft_puts(argv[0]);
if (argc)
ft_puts(argv[0]);
return (0);
}

View File

@ -6,7 +6,7 @@
/* By: tosuman </var/spool/mail/tosuman> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/03/30 18:58:16 by tosuman #+# #+# */
/* Updated: 2023/03/30 18:58:16 by tosuman ### ########.fr */
/* Updated: 2023/03/31 23:05:06 by tischmid ### ########.fr */
/* */
/* ************************************************************************** */
@ -16,7 +16,7 @@ void ft_puts(char *str)
{
while (*str)
write(1, str++, 1);
write(1, '\n', 1);
write(1, "\n", 1);
}
int ft_strcmp(char *s1, char *s2)