update: added builtins header file

This commit is contained in:
2025-10-30 01:18:39 +01:00
parent bbc3b9e9e7
commit 1781fa96c4

26
include/builtins.h Normal file
View File

@@ -0,0 +1,26 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* builtins.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: sede-san <sede-san@student.42madrid.com +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/10/29 22:09:51 by sede-san #+# #+# */
/* Updated: 2025/10/30 00:46:17 by sede-san ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef BUILTINS_H
# define BUILTINS_H
# include "minishell.h"
/******************************************************************************/
/* Functions */
/******************************************************************************/
// pwd.c
extern u_int8_t builtin_pwd(void);
#endif /* BUILTINS_H */