norminette

This commit is contained in:
whaffman 2025-02-05 16:24:27 +01:00
parent d76fa9350d
commit 8072c13f1e
3 changed files with 16 additions and 6 deletions

View File

@ -6,7 +6,7 @@
/* By: whaffman <whaffman@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2024/07/06 11:15:10 by whaffman #+# #+# */
/* Updated: 2025/02/05 12:38:44 by whaffman ######## odam.nl */
/* Updated: 2025/02/05 15:50:56 by whaffman ######## odam.nl */
/* */
/* ************************************************************************** */
@ -25,8 +25,7 @@ int ft_isdigit(int c);
int ft_isalnum(int c);
int ft_isascii(int c);
int ft_isprint(int c);
int ft_isspace(const char c);
int ft_isspace(const char c);
int ft_count_words(char const *s, char c);
size_t ft_strlen(const char *s);
void *ft_memset(void *s, int c, size_t n);

View File

@ -6,13 +6,12 @@
/* By: whaffman <whaffman@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2024/10/10 17:00:13 by whaffman #+# #+# */
/* Updated: 2025/02/05 12:41:14 by whaffman ######## odam.nl */
/* Updated: 2025/02/05 15:51:24 by whaffman ######## odam.nl */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_atoi(const char *nptr)
{
int sign;

View File

@ -1,9 +1,21 @@
/* ************************************************************************** */
/* */
/* :::::::: */
/* ft_free_arr.c :+: :+: */
/* +:+ */
/* By: whaffman <whaffman@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2025/02/05 15:51:52 by whaffman #+# #+# */
/* Updated: 2025/02/05 15:51:53 by whaffman ######## odam.nl */
/* */
/* ************************************************************************** */
#include "libft.h"
#include <stdlib.h>
void ft_free_arr(char **arr)
{
int i;
int i;
i = 0;
if (arr == NULL)