summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Kaiser2024-03-12 18:21:02 +0100
committerDominik Kaiser2024-03-12 18:21:02 +0100
commitddb39c38dcdae5f4efbf0ce0a26c4c4276eff024 (patch)
tree21fe68ea2b6b8c8ecf2040253c33972913f051ea
parentd92ea96b8136cc62282d3cb129c058bcccc3db14 (diff)
downloadft_printf-ddb39c38dcdae5f4efbf0ce0a26c4c4276eff024.tar.gz
ft_printf-ddb39c38dcdae5f4efbf0ce0a26c4c4276eff024.zip
Add header and empty ft_printf.c
-rw-r--r--ft_printf.h18
-rw-r--r--src/ft_printf.c18
2 files changed, 36 insertions, 0 deletions
diff --git a/ft_printf.h b/ft_printf.h
new file mode 100644
index 0000000..a148f73
--- /dev/null
+++ b/ft_printf.h
@@ -0,0 +1,18 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* ft_printf.h :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2024/03/12 18:19:47 by dkaiser #+# #+# */
+/* Updated: 2024/03/12 18:20:41 by dkaiser ### ########.fr */
+/* */
+/* ************************************************************************** */
+
+#ifndef FT_PRINTF_H
+# define FT_PRINTF_H
+
+int ft_printf(char *fmt, ...);
+
+#endif // FT_PRINTF_H
diff --git a/src/ft_printf.c b/src/ft_printf.c
new file mode 100644
index 0000000..fe152f6
--- /dev/null
+++ b/src/ft_printf.c
@@ -0,0 +1,18 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* ft_printf.c :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2024/03/12 18:18:59 by dkaiser #+# #+# */
+/* Updated: 2024/03/12 18:20:15 by dkaiser ### ########.fr */
+/* */
+/* ************************************************************************** */
+
+#include "../ft_printf.h"
+
+int ft_printf(char *fmt, ...)
+{
+
+}