-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_print_percent.c
More file actions
18 lines (16 loc) · 975 Bytes
/
Copy pathft_print_percent.c
File metadata and controls
18 lines (16 loc) · 975 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_print_percent.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: wkabat <wkabat@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/03 11:33:25 by wkabat #+# #+# */
/* Updated: 2024/04/03 11:38:20 by wkabat ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
int ft_print_percent(void)
{
return (write(1, "%", 1));
}