piscine-rush00-ultra/include/arghandle.h

22 lines
1.1 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* arghandle.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tischmid <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/03/18 23:38:17 by tischmid #+# #+# */
/* Updated: 2023/03/18 23:45:10 by tischmid ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef ARGHANDLE_H
# define ARGHANDLE_H
void wrong_argc(int expected, int argc);
void usage(char *argv0);
int wrong_dimension(char *dim, int max, int actual);
int get_dim(char *type, int default_max);
#endif