26 lines
1.1 KiB
C
26 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_stock_par.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2016/08/08 14:54:01 by jhalford #+# #+# */
|
|
/* Updated: 2016/08/14 10:43:15 by jhalford ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef FT_STOCK_PAR_H
|
|
# define FT_STOCK_PAR_H
|
|
|
|
char **ft_split_whitespaces(char *str);
|
|
|
|
typedef struct s_stock_par
|
|
{
|
|
int size_param;
|
|
char *str;
|
|
char *copy;
|
|
char **tab;
|
|
} t_stock_par;
|
|
|
|
#endif
|