25 lines
1.1 KiB
C
25 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* :::::::: */
|
|
/* allowed.h :+: :+: */
|
|
/* +:+ */
|
|
/* By: qmennen <qmennen@student.codam.nl> +#+ */
|
|
/* +#+ */
|
|
/* Created: 2025/04/15 15:31:54 by qmennen #+# #+# */
|
|
/* Updated: 2025/05/14 12:42:06 by whaffman ######## odam.nl */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef ALLOWED_H
|
|
# define ALLOWED_H
|
|
|
|
# include <fcntl.h>
|
|
# include <unistd.h>
|
|
# include <stdio.h>
|
|
# include <string.h>
|
|
# include <stdlib.h>
|
|
# include <math.h>
|
|
# include <sys/time.h>
|
|
# include <errno.h> // TODO: Check if this is allowed?
|
|
#endif
|