minishell: add basic main function

This commit is contained in:
Khaïs COLIN 2025-02-06 13:44:55 +01:00
parent 6b7557f693
commit 08101e295a
No known key found for this signature in database

19
src/minishell.c Normal file
View file

@ -0,0 +1,19 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* minishell.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: kcolin <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/02/06 13:44:06 by kcolin #+# #+# */
/* Updated: 2025/02/06 13:46:23 by kcolin ### ########.fr */
/* */
/* ************************************************************************** */
int main(int argc, char *argv[], char **envp)
{
(void)argc;
(void)argv;
(void)envp;
return (0);
}