parser done
This commit is contained in:
parent
5ecbfa4325
commit
30ad265779
4 changed files with 152 additions and 0 deletions
31
coders/codexion.h
Normal file
31
coders/codexion.h
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* codexion.h :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: semebrah <semebrah@student.42berlin.de> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2026/03/22 18:07:06 by semebrah #+# #+# */
|
||||
/* Updated: 2026/03/22 18:07:31 by semebrah ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#ifndef CODEXION_H
|
||||
# define CODEXION_H
|
||||
|
||||
typedef struct s_data
|
||||
{
|
||||
int number_of_coders;
|
||||
int time_to_burnout;
|
||||
int time_to_compile;
|
||||
int time_to_debug;
|
||||
int time_to_refactor;
|
||||
int number_of_compiles_required;
|
||||
int dongle_cooldown;
|
||||
int scheduler;
|
||||
} t_data;
|
||||
|
||||
// utils.h
|
||||
t_data *parse_arguments(int count, char **args);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue