-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_pchar.c
19 lines (17 loc) · 968 Bytes
/
ft_pchar.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_pchar.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aizsak <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/11/13 09:34:36 by aizsak #+# #+# */
/* Updated: 2022/12/11 10:48:42 by aizsak ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_pchar(int c)
{
write (1, &c, 1);
return (1);
}