ssl_des/inc/ft_ssl.h

28 lines
1.1 KiB
C
Raw Normal View History

2018-10-22 22:33:05 +03:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_ssl.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: gtertysh <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/10/22 20:07:36 by gtertysh #+# #+# */
2018-10-23 20:41:44 +03:00
/* Updated: 2018/10/23 19:36:23 by gtertysh ### ########.fr */
2018-10-22 22:33:05 +03:00
/* */
/* ************************************************************************** */
#ifndef FT_SSL_H
# define FT_SSL_H
2019-02-02 22:28:23 +02:00
typedef void (*t_alg_function)(int argc, char **argv);
2018-10-22 22:33:05 +03:00
typedef struct s_alorithm
{
const char *name;
2019-02-02 22:28:23 +02:00
t_alg_function function;
2018-10-22 22:33:05 +03:00
} t_algorithm;
void ft_ssl_usage(void);
2019-02-02 22:28:23 +02:00
void ft_ssl_init(int argc, char **argv);
2018-10-22 22:33:05 +03:00
#endif