-
Notifications
You must be signed in to change notification settings - Fork 0
/
csvlib.h
27 lines (23 loc) · 1.22 KB
/
csvlib.h
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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* csvlib.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: sky <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/09/09 22:48:25 by sky #+# #+# */
/* Updated: 2021/08/20 15:57:41 by pfile ### ########lyon.fr */
/* */
/* ************************************************************************** */
#ifndef CSVLIB_H
# define CSVLIB_H
# include <stdlib.h>
# include <string.h>
# include <ctype.h>
# include <fcntl.h>
# include "get_next_line/get_next_line.h"
int column_pos(int i, char *str, char simv);
char *column_str_value(char *str, char simv);
int strcmp_end(char *settings, char *extension);
char *ft_strndup(char *str, int n);
#endif