-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstrput.c
executable file
·19 lines (17 loc) · 995 Bytes
/
strput.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* strput.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: luperez <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2014/12/03 05:43:31 by luperez #+# #+# */
/* Updated: 2014/12/06 12:46:04 by luperez ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
t_str *strput(t_str *str, char *value)
{
str->str = value;
return (str->next);
}