mirror of
https://github.com/KeyZox71/ft_minipowershell.git
synced 2025-05-14 00:08:47 +02:00
67 lines
1.7 KiB
C
67 lines
1.7 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* is_inquote.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/05/20 20:06:13 by adjoly #+# #+# */
|
|
/* Updated: 2024/05/21 20:34:14 by adjoly ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "parsing.h"
|
|
#include "libft.h"
|
|
|
|
t_quote __is_quote(char c)
|
|
{
|
|
if (c == 39)
|
|
return (SINGLE);
|
|
if (c == 34)
|
|
return (DOUBLE);
|
|
return (FALSE);
|
|
}
|
|
|
|
char *search_for_next_quote(char *s, t_quote quote_type)
|
|
{
|
|
char *tmp;
|
|
|
|
tmp = s;
|
|
while (*tmp)
|
|
{
|
|
if (__is_quote(*tmp) == quote_type)
|
|
break ;
|
|
tmp++;
|
|
}
|
|
return (tmp);
|
|
}
|
|
|
|
t_quote is_inquote(char *s, size_t i)
|
|
{
|
|
char *tmp;
|
|
size_t start_quote;
|
|
t_quote quote_type;
|
|
|
|
start_quote = 0;
|
|
tmp = s;
|
|
quote_type = FALSE;
|
|
while (*tmp)
|
|
{
|
|
if ((size_t)(tmp - s) > i)
|
|
break ;
|
|
if (__is_quote(*tmp) != FALSE)
|
|
{
|
|
start_quote = tmp - s;
|
|
quote_type = __is_quote(*tmp);
|
|
tmp = search_for_next_quote(tmp, quote_type);
|
|
tmp++;
|
|
if (*tmp && (start_quote < i && (size_t)(tmp - s) > i))
|
|
return (quote_type);
|
|
else if (!*tmp)
|
|
return (NOT_CLOSED);
|
|
}
|
|
tmp++;
|
|
}
|
|
return (FALSE);
|
|
}
|