From 2e47298639b3e4971e2a7b35d50b57340276435b Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Mon, 27 Jul 2020 21:39:44 +0200 Subject: Disabling previous work temporarily to focus on the algorithm --- src/error.c | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'src/error.c') diff --git a/src/error.c b/src/error.c index 1492bde..96ef3b1 100644 --- a/src/error.c +++ b/src/error.c @@ -6,22 +6,22 @@ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/22 07:02:59 by cacharle #+# #+# */ -/* Updated: 2020/02/22 07:13:57 by cacharle ### ########.fr */ +/* Updated: 2020/07/27 14:59:41 by charles ### ########.fr */ /* */ /* ************************************************************************** */ #include "ft_ssl.h" -void fl_error_command(char *command) -{ - ft_putstr_fd("ft_ssl: Error: '", STDERR_FILENO); - ft_putstr_fd(command, STDERR_FILENO); - ft_putendl_fd("' is an invalid command.", STDERR_FILENO); - ft_putstr_fd("\nStandard commands:\n" - "\nMessage Digest commands:\n" - "md5\n" - "sha256\n" - "\nCipher commands:\n", - STDERR_FILENO - ); -} +/* void error_command(char *command) */ +/* { */ +/* ft_putstr_fd("ft_ssl: Error: '", STDERR_FILENO); */ +/* ft_putstr_fd(command, STDERR_FILENO); */ +/* ft_putendl_fd("' is an invalid command.", STDERR_FILENO); */ +/* ft_putstr_fd("\nStandard commands:\n" */ +/* "\nMessage Digest commands:\n" */ +/* "md5\n" */ +/* "sha256\n" */ +/* "\nCipher commands:\n", */ +/* STDERR_FILENO */ +/* ); */ +/* } */ -- cgit