mirror of
https://codeberg.org/ACME-Corporation/cub3d.git
synced 2025-12-06 09:58:09 +01:00
Added libft and mlx
This commit is contained in:
parent
8448ae3a23
commit
82d06d234a
122 changed files with 10400 additions and 0 deletions
29
libft/includes/get_next_line.h
Normal file
29
libft/includes/get_next_line.h
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* get_next_line.h :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: tchampio <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2024/10/25 10:08:13 by tchampio #+# #+# */
|
||||
/* Updated: 2024/12/02 17:20:24 by tchampio ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#ifndef GET_NEXT_LINE_H
|
||||
# define GET_NEXT_LINE_H
|
||||
|
||||
# include <unistd.h>
|
||||
# include <stddef.h>
|
||||
# include <stdlib.h>
|
||||
# ifndef BUFFER_SIZE
|
||||
# define BUFFER_SIZE 69
|
||||
# endif
|
||||
|
||||
char *_get_next_line(int fd);
|
||||
char *_ft_strchr(const char *s, int c);
|
||||
void *_ft_memcpy(void *dest, const void *src, size_t n);
|
||||
size_t _ft_strlen(const char *s);
|
||||
void _ft_strcat(char **dst_ptr, const char *src);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue