maxishell
Implementation of a shell for Linux-like systems
Loading...
Searching...
No Matches
ft_exclude_delimiters.c File Reference
#include "libft.h"
Include dependency graph for ft_exclude_delimiters.c:

Go to the source code of this file.

Functions

const char * ft_exclude_delimiters (const char *str, char *delims)
 

Function Documentation

◆ ft_exclude_delimiters()

const char * ft_exclude_delimiters ( const char *  str,
char *  delims 
)

Definition at line 15 of file ft_exclude_delimiters.c.

16{
17 while (*str && (ft_strchr(delims, *str) != NULL))
18 str++;
19 return (str);
20}
char * ft_strchr(const char *s, int c)
Definition ft_strchr.c:25

References ft_strchr().

Referenced by valid_operator().

Here is the call graph for this function:
Here is the caller graph for this function: