aboutsummaryrefslogtreecommitdiff
path: root/common/args.c
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2021-01-08 14:35:53 +0100
committerCharles Cabergs <me@cacharle.xyz>2021-01-08 14:35:53 +0100
commitad7ed73c124c8fcda6629350307f0f4f41b87fe3 (patch)
tree5faf9809401b64fecffe709f20cc9bb980aa7406 /common/args.c
parent907debbb7d1e7ccc4914805cfe4acbed92b82bcc (diff)
downloadphilosophers-ad7ed73c124c8fcda6629350307f0f4f41b87fe3.tar.gz
philosophers-ad7ed73c124c8fcda6629350307f0f4f41b87fe3.tar.bz2
philosophers-ad7ed73c124c8fcda6629350307f0f4f41b87fe3.zip
Updated Makefile, restructuring common files
Diffstat (limited to 'common/args.c')
-rw-r--r--common/args.c35
1 files changed, 0 insertions, 35 deletions
diff --git a/common/args.c b/common/args.c
deleted file mode 100644
index 2070e46..0000000
--- a/common/args.c
+++ /dev/null
@@ -1,35 +0,0 @@
-/* ************************************************************************** */
-/* */
-/* ::: :::::::: */
-/* args.c :+: :+: :+: */
-/* +:+ +:+ +:+ */
-/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
-/* +#+#+#+#+#+ +#+ */
-/* Created: 2020/02/08 23:12:55 by cacharle #+# #+# */
-/* Updated: 2020/12/30 13:44:54 by charles ### ########.fr */
-/* */
-/* ************************************************************************** */
-
-#include "common.h"
-
-bool parse_args(t_philo_args *args, int argc, char **argv)
-{
- if (argc != 5 && argc != 6)
- {
- return (h_err(false, "Usage: %s philosophers_num death_timeout"
- "eat_timeout sleep_timeout [meal_num]", argv[0]));
- }
- if ((args->philo_num = h_atou_strict(argv[1])) == -1
- || (args->timeout_death = h_atou_strict(argv[2])) == -1
- || (args->timeout_eat = h_atou_strict(argv[3])) == -1
- || (args->timeout_sleep = h_atou_strict(argv[4])) == -1)
- return (false);
- if (argc == 6)
- {
- if ((args->meal_num = h_atou_strict(argv[5])) == -1)
- return (false);
- }
- else
- args->meal_num = -1;
- return (true);
-}