maxishell
Implementation of a shell for Linux-like systems
|
#include "libft.h"
Go to the source code of this file.
Functions | |
static int | count_words (const char *s, char c) |
static char * | strndup (const char *s, size_t n) |
static void | split_into_words (char **result, const char *s, char c) |
char ** | ft_split (const char *s, char c) |
|
static |
Definition at line 32 of file ft_split.c.
Referenced by ft_split().
char ** ft_split | ( | const char * | s, |
char | c | ||
) |
Definition at line 95 of file ft_split.c.
References count_words(), and split_into_words().
Referenced by builtin_pipe_test(), ft_find_path(), main_loop(), and process_and_reassemble().
|
static |
Definition at line 68 of file ft_split.c.
References strndup().
Referenced by ft_split().
|
static |
Definition at line 56 of file ft_split.c.
References ft_memcpy().
Referenced by split_into_words().