42-archive/42-piscine-c/d10/ex09/srcs/ft_err.c
2016-08-25 20:50:28 +02:00

24 lines
1.1 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_err.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/08/12 12:16:26 by jhalford #+# #+# */
/* Updated: 2016/08/12 16:26:05 by jhalford ### ########.fr */
/* */
/* ************************************************************************** */
#include <unistd.h>
#define USAGE_MSG "error : only [ + - * / % ] are accepted.\n"
void ft_putstr(char *str);
int ft_usage(int a, int b)
{
a = 0;
b = 0;
ft_putstr(USAGE_MSG);
return (0);
}