-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgrimly.h
More file actions
30 lines (25 loc) · 1.2 KB
/
grimly.h
File metadata and controls
30 lines (25 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Grimly.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mmodise <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/04/28 11:32:48 by mmodise #+# #+# */
/* Updated: 2016/04/28 23:53:36 by mmodise ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef __GRIMLY_H_
# define __GRIMLY_H_
# include <stdlib.h>
typedef struct s_list
{
struct s_list *next;
char data;
} t_list;
void ft_list_push_back(t_list **begin_list, char data);
t_list *ft_create_elem(char data);
int ft_atoi(char *str);
int ft_strlen(char *str);
int ft_pow(int pow, int in_v);
#endif