-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprint_char.c
More file actions
18 lines (16 loc) · 970 Bytes
/
print_char.c
File metadata and controls
18 lines (16 loc) · 970 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* print_char.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: sudaniel <sudaniel@student.42heilbronn.de +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/21 12:14:26 by sudaniel #+# #+# */
/* Updated: 2024/10/29 07:13:02 by sudaniel ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
int print_char(int c)
{
return (write (1, &c, 1));
}