1
0
This repository has been archived on 2024-10-25. You can view files and clone it, but cannot push or open issues or pull requests.

20 lines
1.0 KiB
C
Raw Normal View History

2023-08-03 23:16:27 +02:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* fst_line.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/08/01 18:25:47 by axdubois #+# #+# */
/* Updated: 2023/08/02 20:30:35 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FST_LINE_H
# define FST_LINE_H
int ft_len_line(int file, int n);
int ft_len_colum(int file);
char *ft_get_first_line(int file);
#endif