summaryrefslogtreecommitdiffstats
path: root/src/b_sqb_str.c
blob: f845c1ee664da852b83138d549288cb3f0a333ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   b_sqb_str.c                                        :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: rbousset <marvin@42.fr>                    +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/02/14 17:19:27 by rbousset          #+#    #+#             */
/*   Updated: 2020/02/14 17:19:29 by rbousset         ###   ########lyon.fr   */
/*                                                                            */
/* ************************************************************************** */

#include <libft.h>

#include "d_define.h"

static t_bool	b_sqb_str_comp(unsigned char id,
							const char s1[],
							const char s2[])
{
	if (id == B_ID_SQB_EQUA &&
		ft_strncmp(s1, s2, ft_strlen(s1) + 1) == 0)
		return (TRUE);
	else if (id == B_ID_SQB_EQUA &&
		ft_strncmp(s1, s2, ft_strlen(s1) + 1) != 0)
		return (TRUE);
	return (FALSE);
}

unsigned char	b_sqb_str(unsigned char id, char *argv[])
{
	if (id == B_ID_SQB_N)
	{
		if (argv[1][0] != '\0')
			return (0);
		else
			return (1);
	}
	else if (id == B_ID_SQB_Z)
	{
		if (argv[1][0] == '\0')
			return (0);
		else
			return (1);
	}
	if (b_sqb_str_comp(id, argv[0], argv[2]) == TRUE)
		return (0);
	return (1);
}