-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpercent.c
More file actions
19 lines (17 loc) · 968 Bytes
/
percent.c
File metadata and controls
19 lines (17 loc) · 968 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* :::::::: */
/* percent.c :+: :+: */
/* +:+ */
/* By: cstaats <cstaats@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2021/11/24 07:49:51 by cstaats #+# #+# */
/* Updated: 2021/11/24 09:18:41 by cstaats ######## odam.nl */
/* */
/* ************************************************************************** */
#include <unistd.h>
int percent(char a)
{
write(1, &a, 1);
return (1);
}