-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_print_index.c
18 lines (16 loc) · 1002 Bytes
/
ft_print_index.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_print_index.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ael-maim <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/23 09:32:44 by ael-maim #+# #+# */
/* Updated: 2023/11/27 19:48:33 by ael-maim ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
void ft_print_index(char *str, int index, int *len)
{
ft_putchar(str[index], len);
}