summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/b_pwd.c4
-rw-r--r--src/b_pwd.h8
2 files changed, 5 insertions, 7 deletions
diff --git a/src/b_pwd.c b/src/b_pwd.c
index e3da005..11d9afa 100644
--- a/src/b_pwd.c
+++ b/src/b_pwd.c
@@ -20,9 +20,7 @@
#include "u_vars.h"
#include "u_vars_next.h"
-uint8_t
- b_pwd(char *args[],
- t_msh *msh)
+uint8_t b_pwd(char *args[], t_msh *msh)
{
char *cwd;
diff --git a/src/b_pwd.h b/src/b_pwd.h
index 649ce8e..e5ba05d 100644
--- a/src/b_pwd.h
+++ b/src/b_pwd.h
@@ -10,12 +10,12 @@
/* */
/* ************************************************************************** */
-#ifndef B_PWD_H
-#define B_PWD_H
+#ifndef FT_B_PWD_H
+# define FT_B_PWD_H
-#include <stdint.h>
+# include <stdint.h>
-#include "s_struct.h"
+# include "s_struct.h"
uint8_t b_pwd(char *args[], t_msh *msh);