/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_utils.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: dkaiser # include # include /* ** Prints error message and returns EXIT_FAILURE */ int ft_err(const char *str); /* ** Returns integer value from str */ int ft_atoi(const char *str); /* ** Returns current time in milliseconds */ int ft_cur_time_in_ms(); /* ** Prints "timestamp_in_ms id str" */ void ft_log(int id, const char *str); #endif