all ops done; without synchronization

This commit is contained in:
Semere M. Mebrahtom 2026-03-24 20:16:27 +01:00
parent 30ad265779
commit ebe57f783d
Signed by: semere
GPG key ID: 7FC937214DF30488
4 changed files with 117 additions and 31 deletions

View file

@ -26,15 +26,15 @@ int isnumeric(char *str)
return (1);
}
t_data *parse_arguments(int count, char **args)
t_args *parse_arguments(int count, char **args)
{
int args_int[8];
t_data *data;
t_args *data;
int i;
if (count != 8)
return (NULL);
data = malloc(sizeof(t_data));
data = malloc(sizeof(t_args));
if (!data)
return (NULL);
i = -1;