From a7d5f22b0a6b2275bcecbacfa175c124602ca194 Mon Sep 17 00:00:00 2001 From: Tanguy MAZE Date: Wed, 4 Apr 2018 11:28:27 +0200 Subject: [PATCH] Init commit + ft_isalpha --- Makefile | 39 +++++++++++++++++++++++++++++++++++++ auteur | 1 + ft_isalpha.c | 28 ++++++++++++++++++++++++++ libft.h | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 123 insertions(+) create mode 100644 Makefile create mode 100644 auteur create mode 100644 ft_isalpha.c create mode 100644 libft.h diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d091a73 --- /dev/null +++ b/Makefile @@ -0,0 +1,39 @@ +#******************************************************************************# +# # +# ::: :::::::: # +# Makefile :+: :+: :+: # +# +:+ +:+ +:+ # +# By: tmaze +#+ +:+ +#+ # +# +#+#+#+#+#+ +#+ # +# Created: 2018/04/04 10:51:59 by tmaze #+# #+# # +# Updated: 2018/04/04 10:56:20 by tmaze ### ########.fr # +# # +#******************************************************************************# + +CC = gcc +CCFLAGS = -Wall -Werror -Wextra +CCSTD = -std=c99 + +NAME = libft.a + +SRCS = ft_isalpha.c +OBJS = $(SRCS:.c=.o) +INCLS = -I. + +.PHONY = all clean fclean re + +all: $(NAME) + +$(NAME): $(OBJS) + ar rcs $(NAME) $(OBJS) + +%.o: %.c + $(CC) $(CCFLAGS) $(CCSTD) $(INCLS) -c $< -o $@ + +clean: + rm -f $(OBJS) + +fclean: clean + rm -f $(NAME) + +re: fclean all \ No newline at end of file diff --git a/auteur b/auteur new file mode 100644 index 0000000..3d3f281 --- /dev/null +++ b/auteur @@ -0,0 +1 @@ +tmaze diff --git a/ft_isalpha.c b/ft_isalpha.c new file mode 100644 index 0000000..14dce1a --- /dev/null +++ b/ft_isalpha.c @@ -0,0 +1,28 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* ft_isalpha.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: tmaze +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2018/04/04 10:56:47 by tmaze #+# #+# */ +/* Updated: 2018/04/04 11:23:21 by tmaze ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#include "libft.h" + +int ft_isupper(int c) +{ + return (c >= 'A' && c <= 'Z'); +} + +int ft_islower(int c) +{ + return (c >= 'a' && c <= 'z'); +} + +int ft_isalpha(int c) +{ + return (ft_islower(c) || ft_isupper(c)); +} diff --git a/libft.h b/libft.h new file mode 100644 index 0000000..7be4580 --- /dev/null +++ b/libft.h @@ -0,0 +1,55 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* libft.h :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: tmaze +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2018/04/04 10:40:01 by tmaze #+# #+# */ +/* Updated: 2018/04/04 10:44:30 by tmaze ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#ifndef LIBFT_H +# define LIBFT_H + +# include + +/* +** fonctions obligatoires +*/ + +void *ft_memset(void *s, int c, size_t n); +void ft_bzero(void *s, size_t n); +void *ft_memcpy(void *dest, const void *src, size_t n); +void *ft_memccpy(void *dest, const void *src, int c, size_t n); +void *ft_memmove(void *dest, const void *src, size_t n); +void *ft_memchr(const void *s, int c, size_t n); +int ft_memcmp(const void *s1, const void *s2, size_t n); +size_t ft_strlen(const char *s); +char *ft_strdup(const char *s); +char *ft_strcpy(char *dest, const char *src); +char *ft_strncpy(char *dest, const char *src, size_t n); +char *ft_strcat(char *dest, const char *src); +char *ft_strncat(char *dest, const char *src, size_t n); +size_t ft_strlcat(char *dst, const char *src, size_t size); +char *ft_strchr(const char *s, int c); +char *ft_strrchr(const char *s, int c); +char *ft_strstr(const char *haystack, const char *needle); +char *ft_strnstr(const char *haystack, const char *needle, size_t n); +int ft_strcmp(const char *s1, const char *s2); +int ft_strncmp(const char *s1, const char *s2); +int ft_atoi(const char *nptr); +int ft_isalpha(int c); +int ft_isdigit(int c); +int ft_isalnum(int c); +int ft_isascii(int c); +int ft_isprint(int c); +int ft_toupper(int c); +int ft_tolower(int c); + +/* +** fonctions supplémentaires +*/ + +#endif