Merge remote-tracking branch 'origin/master'

This commit is contained in:
Maieul BOYER 2024-05-29 16:41:55 +02:00
commit b8a121aae5
No known key found for this signature in database
6 changed files with 147 additions and 24 deletions

View file

@ -6,7 +6,7 @@
# By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ # # By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ # # +#+#+#+#+#+ +#+ #
# Created: 2023/11/12 11:05:05 by rparodi #+# #+# # # Created: 2023/11/12 11:05:05 by rparodi #+# #+# #
# Updated: 2024/05/29 14:20:08 by rparodi ### ########.fr # # Updated: 2024/05/29 15:37:40 by rparodi ### ########.fr #
# # # #
# **************************************************************************** # # **************************************************************************** #
@ -14,7 +14,7 @@
# Variables # Variables
# Name # Name
NAME = libmmath.a NAME = test
LIBDIRNAME = libft LIBDIRNAME = libft
SRCDIRNAME = sources SRCDIRNAME = sources
@ -26,15 +26,17 @@ RM = rm -rf
CFLAGS = -Werror -Wextra -Wall -Wno-unused-command-line-argument -g3 -MMD CFLAGS = -Werror -Wextra -Wall -Wno-unused-command-line-argument -g3 -MMD
# Sources # Sources
LIB = ./libft/ft_split.c LIB =
SRC = ./sources/operation/ft_pow.c \ SRC = ./main.c \
./sources/operation/ft_pow.c \
./sources/operation/ft_add.c \ ./sources/operation/ft_add.c \
./sources/utils/ft_init_numbers.c \ ./sources/utils/ft_init_numbers.c \
./sources/utils/ft_nblen.c \ ./sources/utils/ft_nblen.c \
./sources/comparison/ft_is_less.c \ ./sources/comparison/ft_is_less.c \
./sources/comparison/ft_equal.c \ ./sources/comparison/ft_equal.c \
./sources/comparison/ft_is_greater.c ./sources/comparison/ft_is_greater.c \
./sources/ft_split.c
# Objects # Objects
OBJDIRNAME = ./objects OBJDIRNAME = ./objects
@ -83,7 +85,7 @@ $(NAME): $(OBJ) $(LIB_OBJ)
@mkdir -p $(OBJDIRNAME)/$(LIBDIRNAME) @mkdir -p $(OBJDIRNAME)/$(LIBDIRNAME)
@mkdir -p $(OBJDIRNAME)/$(SRCDIRNAME) @mkdir -p $(OBJDIRNAME)/$(SRCDIRNAME)
@printf '$(GREY) Creating $(END)$(GREEN)$(OBJDIRNAME)$(END)\n' @printf '$(GREY) Creating $(END)$(GREEN)$(OBJDIRNAME)$(END)\n'
@ar rc $(NAME) $(OBJ) $(OBJBonus) 1>/dev/null @ar rc $(NAME) $(OBJ) $(OBJBonus)
@ranlib $(NAME) @ranlib $(NAME)
# Creating the objects # Creating the objects
$(OBJDIRNAME)/%.o: %.c $(OBJDIRNAME)/%.o: %.c
@ -125,5 +127,5 @@ footer:
# Phony # Phony
.PHONY: all bonus clean fclean re .PHONY: all bonus clean fclean re
# -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
-include ${OBJ:.o=.d} -include ${OBJ:.o=.d}

View file

@ -6,7 +6,7 @@
/* By: rparodi <marvin@42.fr> +#+ +:+ +#+ */ /* By: rparodi <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */ /* +#+#+#+#+#+ +#+ */
/* Created: 2024/05/04 12:16:08 by rparodi #+# #+# */ /* Created: 2024/05/04 12:16:08 by rparodi #+# #+# */
/* Updated: 2024/05/28 15:43:40 by rparodi ### ########.fr */ /* Updated: 2024/05/29 16:22:10 by rparodi ### ########.fr */
/* */ /* */
/* ************************************************************************** */ /* ************************************************************************** */
@ -20,6 +20,7 @@
typedef struct s_number typedef struct s_number
{ {
t_i8 sign;
t_str number; t_str number;
t_str int_part; t_str int_part;
t_str float_part; t_str float_part;
@ -27,7 +28,7 @@ typedef struct s_number
t_usize float_size; t_usize float_size;
} t_number; } t_number;
t_error ft_nblen(const t_str str, t_usize *interger, t_usize *floating); t_error ft_nblen(const t_str str, t_usize *int_len, t_usize *float_len, t_u8 *sign);
t_error ft_init_numbers(t_str str, t_number *nb); t_error ft_init_numbers(t_str str, t_number *nb);
char **ft_split(char const *s, char c); char **ft_split(char const *s, char c);

View file

@ -1,17 +1,37 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/05/27 14:41:26 by rparodi #+# #+# */
/* Updated: 2024/05/29 16:16:28 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include <stdio.h>
#include "./includes/ft_math.h" #include "./includes/ft_math.h"
int main(int argc, char *argv[]) int main(int argc, char *argv[])
{ {
t_number nb; t_number *nb;
if (argc == 2) nb = (t_number *)malloc(sizeof(t_number));
if (argc != 2)
{ {
ft_init_numbers(argv[1], &nb); printf("Usage: %s <string>\n", argv[0]);
printf("Number: %s\n", nb.number); return 1;
printf("Integer: %s\n", nb.int_part); }
printf("Float: %s\n", nb.float_part); else if (argc == 2)
printf("Integer size: %zu\n", nb.int_size); {
printf("Float size: %zu\n", nb.float_size); if (ft_init_numbers(argv[1], nb) == ERROR)
{
printf("Error\n");
return 1;
}
else
printf("Number = %s \n(int: %s, %zu) (float: %s, %zu)\n", nb->number, nb->int_part, nb->int_size, nb->float_part, nb->float_size);
} }
return (0); return (0);
} }

93
math/sources/ft_split.c Normal file
View file

@ -0,0 +1,93 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_split.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rparodi <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/09 13:56:02 by rparodi #+# #+# */
/* Updated: 2024/05/28 15:39:50 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "../includes/ft_math.h"
static int count_words(const char *str, char sep)
{
int i;
int count;
i = 0;
count = 0;
while (str[i])
{
while (str[i] == sep && str[i])
i++;
if (str[i] != sep && str[i])
{
while (str[i] != sep && str[i])
i++;
count++;
}
}
return (count);
}
static char *ft_strndup(const char *s, int j)
{
int i;
char *str;
i = 0;
str = (char *)malloc((j + 1));
if (!str)
return (NULL);
while (s[i] && i < j)
{
str[i] = s[i];
i++;
}
str[i] = '\0';
return (str);
}
static char **ext_w(char **words_array, const char *str, char sep, int size)
{
int i;
int j;
i = 0;
j = 0;
while (j < size)
{
while (str[i] == sep && str[i])
i++;
str = str + i;
i = 0;
while (str[i] != sep && str[i])
i++;
words_array[j++] = ft_strndup(str, i);
str = str + i;
i = 0;
}
words_array[j] = 0;
return (words_array);
}
char **ft_split(char const *s, char c)
{
int size;
char **words_array;
size = count_words(s, c);
words_array = (char **)malloc(sizeof(char *) * (size + 1));
if (!words_array)
return (NULL);
if (size == 0)
{
words_array[0] = NULL;
return (words_array);
}
words_array = ext_w(words_array, s, c, size);
return (words_array);
}

View file

@ -6,7 +6,7 @@
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */ /* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */ /* +#+#+#+#+#+ +#+ */
/* Created: 2024/05/28 13:41:03 by rparodi #+# #+# */ /* Created: 2024/05/28 13:41:03 by rparodi #+# #+# */
/* Updated: 2024/05/28 15:44:24 by rparodi ### ########.fr */ /* Updated: 2024/05/29 16:23:35 by rparodi ### ########.fr */
/* */ /* */
/* ************************************************************************** */ /* ************************************************************************** */
@ -16,22 +16,23 @@ t_error ft_init_numbers(t_str str, t_number *nb)
{ {
t_usize int_size; t_usize int_size;
t_usize float_size; t_usize float_size;
t_u8 sign;
t_str *tmp; t_str *tmp;
int_size = 0; int_size = 0;
float_size = 0; float_size = 0;
sign = 1;
if (nb == NULL) if (nb == NULL)
return (ERROR); return (ERROR);
if (ft_nblen(str, &int_size, &float_size) == ERROR) if (ft_nblen(str, &int_size, &float_size, &sign) == ERROR)
return (ERROR); return (ERROR);
else else
{ {
nb = (t_number *)malloc(sizeof(t_number));
nb->number = str; nb->number = str;
tmp = ft_split(str, '.'); tmp = ft_split(str, '.');
nb->sign = sign;
nb->int_part = tmp[0]; nb->int_part = tmp[0];
nb->float_part = tmp[1]; nb->float_part = tmp[1];
// free_strs(tmp);
nb->int_size = int_size; nb->int_size = int_size;
nb->float_size = float_size; nb->float_size = float_size;
} }

View file

@ -6,7 +6,7 @@
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */ /* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */ /* +#+#+#+#+#+ +#+ */
/* Created: 2024/05/27 12:30:54 by rparodi #+# #+# */ /* Created: 2024/05/27 12:30:54 by rparodi #+# #+# */
/* Updated: 2024/05/28 13:34:20 by rparodi ### ########.fr */ /* Updated: 2024/05/29 16:20:52 by rparodi ### ########.fr */
/* */ /* */
/* ************************************************************************** */ /* ************************************************************************** */
@ -21,15 +21,21 @@ t_error ft_counter(const t_str str, t_usize *i)
return (NO_ERROR); return (NO_ERROR);
} }
t_error ft_nblen(const t_str str, t_usize *int_len, t_usize *float_len) t_error ft_nblen(const t_str str, t_usize *int_len, t_usize *float_len, t_u8 *sign)
{ {
t_usize i; t_usize i;
(*int_len) = 0; (*int_len) = 0;
(*float_len) = 0; (*float_len) = 0;
(*sign) = 1;
i = 0; i = 0;
if (str == NULL) if (str == NULL)
return (ERROR); return (ERROR);
if (str[i] == '-')
{
(*sign) = -1;
i++;
}
while (str[i] != '.' && str[i] != '\0') while (str[i] != '.' && str[i] != '\0')
ft_counter(str, &i); ft_counter(str, &i);
(*int_len) = i; (*int_len) = i;