-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_printf_utils2.c
More file actions
21 lines (18 loc) · 1015 Bytes
/
ft_printf_utils2.c
File metadata and controls
21 lines (18 loc) · 1015 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_printf_utils2.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: hyojeong <hyojeong@student.42seoul.kr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/04/14 09:43:46 by hyojeong #+# #+# */
/* Updated: 2022/04/14 09:45:38 by hyojeong ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
#include <unistd.h>
void print_percent(int *printf_len)
{
write(1, "%", 1);
*printf_len += 1;
}