aboutsummaryrefslogtreecommitdiff
path: root/libft.h
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2019-07-28 21:12:28 +0200
committerCharles <sircharlesaze@gmail.com>2019-07-28 21:12:28 +0200
commit5b653ccffdc33c8774697a93cad0b499b88dca71 (patch)
treefef649e7cf39d62b7c0054ed17a00512e97d5a01 /libft.h
parent4367fc2192172a3c867e4e94327f131f41e4880e (diff)
downloadlibft-5b653ccffdc33c8774697a93cad0b499b88dca71.tar.gz
libft-5b653ccffdc33c8774697a93cad0b499b88dca71.tar.bz2
libft-5b653ccffdc33c8774697a93cad0b499b88dca71.zip
std library function almost done, tested with libft-unit-tests
Diffstat (limited to 'libft.h')
-rw-r--r--libft.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/libft.h b/libft.h
new file mode 100644
index 0000000..0b110e9
--- /dev/null
+++ b/libft.h
@@ -0,0 +1,34 @@
+#ifndef LIBFT_H
+# define LIBFT_H
+
+# include <string.h>
+
+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 *big, const char *little, size_t len);
+int ft_strcmp(const char *s1, const char *s2);
+int ft_strncmp(const char *s1, const char *s2, size_t n);
+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);
+
+#endif