Files
mmoat/srcs/builtins/pwd.c
Loic Deridder 0ec78ee34c builtins
2025-01-15 13:41:40 +01:00

37 lines
439 B
C

#include "../../includes/builtins.h"
int count_char(char *str)
{
int i;
int count;
i = 0;
count = 0;
while (str[i])
{
if (str[i] != ' ')
count++;
i++;
}
return (count);
}
void builtin_pwd(char *arg)
{
char *cwd;
if (count_char(arg) > 3)
ft_putendl_fd("pwd: too many arguments", 2);
else
{
cwd = getcwd(NULL, 0);
if (cwd != NULL)
{
printf("%s\n", cwd);
free(cwd);
}
if (!cwd)
perror("pwd");
}
}