blob: ccadd2fa096ac1fe0e08a8e36b501c45a049d269 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_stock_str.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cacharle <charles.cabergs@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/07/08 16:54:59 by cacharle #+# #+# */
/* Updated: 2019/07/08 16:56:02 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_STOCK_STR_H
#define FT_STOCK_STR_H
typedef struct s_stock_str
{
int size;
char *str;
char *copy;
} t_stock_str;
#endif
|