summaryrefslogtreecommitdiffstats
path: root/src/ft_b_pwd.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/ft_b_pwd.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ft_b_pwd.c b/src/ft_b_pwd.c
index f06a320..d47600f 100644
--- a/src/ft_b_pwd.c
+++ b/src/ft_b_pwd.c
@@ -10,7 +10,9 @@
/* */
/* ************************************************************************** */
+#include <libft.h>
#include <stdint.h>
+
#include "ft_s_struct.h"
uint8_t
@@ -18,7 +20,6 @@ uint8_t
t_msh *msh)
{
(void)args;
- (void)msh;
- /* TODO: do pwd */
+ ft_printf("%s\n", msh->cwd);
return (0);
}