summaryrefslogtreecommitdiffstats
path: root/src/m_argv.h
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-07-27 18:55:07 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-07-27 18:55:07 +0200
commit487a66394061f2d14a2fa421302966b5442d643f (patch)
tree34237d4e9cb85f94bcefd46f399d2224dff3f6b3 /src/m_argv.h
parentCorrect shell prompt (diff)
download42-minishell-487a66394061f2d14a2fa421302966b5442d643f.tar.gz
42-minishell-487a66394061f2d14a2fa421302966b5442d643f.tar.bz2
42-minishell-487a66394061f2d14a2fa421302966b5442d643f.tar.xz
42-minishell-487a66394061f2d14a2fa421302966b5442d643f.tar.zst
42-minishell-487a66394061f2d14a2fa421302966b5442d643f.zip
I couldn't see shit
Diffstat (limited to '')
-rw-r--r--src/m_argv.h (renamed from src/ft_m_argv.h)10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ft_m_argv.h b/src/m_argv.h
index 783c7e4..cdda5d5 100644
--- a/src/ft_m_argv.h
+++ b/src/m_argv.h
@@ -1,7 +1,7 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
-/* ft_m_argv.h :+: :+: :+: */
+/* m_argv.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
@@ -10,14 +10,14 @@
/* */
/* ************************************************************************** */
-#ifndef FT_M_ARGV_H
-#define FT_M_ARGV_H
+#ifndef M_ARGV_H
+#define M_ARGV_H
#include <stdint.h>
-#include "ft_s_struct.h"
+#include "s_struct.h"
-uint8_t ft_m_argv(int argc,
+uint8_t m_argv(int argc,
char *const argv[],
t_msh *msh);