aboutsummaryrefslogtreecommitdiffstats
path: root/libft/src/ft_putchar.c
diff options
context:
space:
mode:
Diffstat (limited to 'libft/src/ft_putchar.c')
-rw-r--r--libft/src/ft_putchar.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/libft/src/ft_putchar.c b/libft/src/ft_putchar.c
new file mode 100644
index 0000000..b558ead
--- /dev/null
+++ b/libft/src/ft_putchar.c
@@ -0,0 +1,20 @@
+/* ************************************************************************** */
+/* LE - / */
+/* / */
+/* ft_putchar.c .:: .:/ . .:: */
+/* +:+:+ +: +: +:+:+ */
+/* By: rbousset <marvin@le-101.fr> +:+ +: +: +:+ */
+/* #+# #+ #+ #+# */
+/* Created: 2019/10/12 15:02:55 by rbousset #+# ## ## #+# */
+/* Updated: 2019/10/15 01:10:32 by rbousset ### #+. /#+ ###.fr */
+/* / */
+/* / */
+/* ************************************************************************** */
+
+#include <unistd.h>
+
+int
+ ft_putchar(int c)
+{
+ return (write(1, &c, 1));
+}