-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtext_slow1.c
23 lines (21 loc) · 1 KB
/
text_slow1.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* text_slow1.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: carlos <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/05/24 02:00:07 by ccastill #+# #+# */
/* Updated: 2020/05/26 00:01:01 by carlos ### ########.fr */
/* */
/* ************************************************************************** */
#include "Nostromo.h"
void text_slow1(char *str)
{
while (*str != '\0')
{
SDL_Delay(20);
ft_putchar(*str);
str++;
}
}