├── .gitattributes ├── .github └── workflows │ └── sync-to-gitlab.yml ├── .gitignore ├── README.md ├── c ├── .gitignore ├── Basic │ ├── Control Flow │ │ ├── Conditional statements │ │ │ └── README.md │ │ └── Loops │ │ │ └── README.md │ ├── Error Handling │ │ └── README.md │ ├── Input and Output │ │ └── README.md │ ├── Keywords │ │ └── README.md │ ├── Operators │ │ └── README.md │ └── Variables and Data Types │ │ ├── README.md │ │ ├── Storage Classes │ │ └── README.md │ │ └── String │ │ └── README.md ├── Data structure │ ├── Arrays │ │ ├── array.h │ │ ├── deleteElement.c │ │ ├── getElement.c │ │ ├── printArray.c │ │ └── updateElement.c │ ├── LinkedList │ │ ├── operations.c │ │ └── stack_operations.h │ └── Stack │ │ ├── Array_Implementation │ │ ├── dec2bin.c │ │ ├── prime_factores.c │ │ ├── stack_array.h │ │ ├── stack_array_1.c │ │ └── stack_array_2.c │ │ ├── LinkedList_implementation │ │ ├── simple_reference.c │ │ └── stack_original.c │ │ └── palindrome.c ├── Modularity and Organization │ ├── Directory Structure │ │ └── README.md │ ├── Functions │ │ ├── Character Classification Functions │ │ │ └── README.md │ │ ├── Data Conversion Functions │ │ │ └── README.md │ │ ├── Math Functions │ │ │ └── README.md │ │ ├── README.md │ │ └── String Manipulation Functions │ │ │ └── README.md │ ├── Header Files │ │ └── README.md │ ├── Libraries and frameworks │ │ └── README.md │ ├── Preprocessor directives │ │ └── README.md │ └── README.md ├── Pointers │ ├── Advanced Pointer Concepts │ │ └── README.md │ ├── Common Pointer Usages │ │ └── README.md │ ├── Pointer Applications │ │ └── README.md │ ├── Pointer Best Practices │ │ └── README.md │ ├── Pointer Debugging and Troubleshooting │ │ └── README.md │ ├── Pointer Operations │ │ └── README.md │ ├── Pointer Pitfalls │ │ └── README.md │ ├── Pointer Security │ │ └── README.md │ ├── Pointer to Complex Types │ │ └── README.md │ ├── README.md │ └── Types of Pointers │ │ └── README.md ├── README.md ├── Software Development Practices │ └── Build and Automation Tools │ │ └── Makefile │ │ └── README.md ├── System Call │ ├── File Management │ │ ├── File IO.md │ │ └── README.md │ ├── Memory Management │ │ ├── Dynamic Memory Allocation.md │ │ ├── Memory Allocation.md │ │ ├── Memory Deallocation.md │ │ ├── Memory layout in c.md │ │ └── README.md │ ├── Process Control │ │ ├── Process Management │ │ │ └── README.md │ │ └── README.md │ ├── README.md │ ├── Signals │ │ └── .gitkeep │ └── Thread Management │ │ └── README.md └── math.PNG ├── docs ├── DeepC_slides_oct2011.pdf └── p.pdfhall.com_how-to-count_5b6fe3e6097c47f3268b4637.pdf └── libft ├── Makefile ├── en.subject.pdf ├── ft_atoi.c ├── ft_bzero.c ├── ft_calloc.c ├── ft_isalnum.c ├── ft_isalpha.c ├── ft_isascii.c ├── ft_isdigit.c ├── ft_isprint.c ├── ft_itoa.c ├── ft_lstadd_back.c ├── ft_lstadd_front.c ├── ft_lstclear.c ├── ft_lstdelone.c ├── ft_lstiter.c ├── ft_lstlast.c ├── ft_lstnew.c ├── ft_lstsize.c ├── ft_memchr.c ├── ft_memcmp.c ├── ft_memcpy.c ├── ft_memmove.c ├── ft_memset.c ├── ft_putchar_fd.c ├── ft_putendl_fd.c ├── ft_putnbr_fd.c ├── ft_putstr_fd.c ├── ft_split.c ├── ft_strchr.c ├── ft_strdup.c ├── ft_striteri.c ├── ft_strjoin.c ├── ft_strlcat.c ├── ft_strlcpy.c ├── ft_strlen.c ├── ft_strmapi.c ├── ft_strncmp.c ├── ft_strnstr.c ├── ft_strrchr.c ├── ft_strtrim.c ├── ft_substr.c ├── ft_tolower.c ├── ft_toupper.c └── libft.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/sync-to-gitlab.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/.github/workflows/sync-to-gitlab.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/README.md -------------------------------------------------------------------------------- /c/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *a.out 3 | *.a 4 | *.o -------------------------------------------------------------------------------- /c/Basic/Control Flow/Conditional statements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Basic/Control Flow/Conditional statements/README.md -------------------------------------------------------------------------------- /c/Basic/Control Flow/Loops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Basic/Control Flow/Loops/README.md -------------------------------------------------------------------------------- /c/Basic/Error Handling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Basic/Error Handling/README.md -------------------------------------------------------------------------------- /c/Basic/Input and Output/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Basic/Input and Output/README.md -------------------------------------------------------------------------------- /c/Basic/Keywords/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Basic/Keywords/README.md -------------------------------------------------------------------------------- /c/Basic/Operators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Basic/Operators/README.md -------------------------------------------------------------------------------- /c/Basic/Variables and Data Types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Basic/Variables and Data Types/README.md -------------------------------------------------------------------------------- /c/Basic/Variables and Data Types/Storage Classes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Basic/Variables and Data Types/Storage Classes/README.md -------------------------------------------------------------------------------- /c/Basic/Variables and Data Types/String/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Basic/Variables and Data Types/String/README.md -------------------------------------------------------------------------------- /c/Data structure/Arrays/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Data structure/Arrays/array.h -------------------------------------------------------------------------------- /c/Data structure/Arrays/deleteElement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Data structure/Arrays/deleteElement.c -------------------------------------------------------------------------------- /c/Data structure/Arrays/getElement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Data structure/Arrays/getElement.c -------------------------------------------------------------------------------- /c/Data structure/Arrays/printArray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Data structure/Arrays/printArray.c -------------------------------------------------------------------------------- /c/Data structure/Arrays/updateElement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Data structure/Arrays/updateElement.c -------------------------------------------------------------------------------- /c/Data structure/LinkedList/operations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Data structure/LinkedList/operations.c -------------------------------------------------------------------------------- /c/Data structure/LinkedList/stack_operations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Data structure/LinkedList/stack_operations.h -------------------------------------------------------------------------------- /c/Data structure/Stack/Array_Implementation/dec2bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Data structure/Stack/Array_Implementation/dec2bin.c -------------------------------------------------------------------------------- /c/Data structure/Stack/Array_Implementation/prime_factores.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Data structure/Stack/Array_Implementation/prime_factores.c -------------------------------------------------------------------------------- /c/Data structure/Stack/Array_Implementation/stack_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Data structure/Stack/Array_Implementation/stack_array.h -------------------------------------------------------------------------------- /c/Data structure/Stack/Array_Implementation/stack_array_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Data structure/Stack/Array_Implementation/stack_array_1.c -------------------------------------------------------------------------------- /c/Data structure/Stack/Array_Implementation/stack_array_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Data structure/Stack/Array_Implementation/stack_array_2.c -------------------------------------------------------------------------------- /c/Data structure/Stack/LinkedList_implementation/simple_reference.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Data structure/Stack/LinkedList_implementation/simple_reference.c -------------------------------------------------------------------------------- /c/Data structure/Stack/LinkedList_implementation/stack_original.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Data structure/Stack/LinkedList_implementation/stack_original.c -------------------------------------------------------------------------------- /c/Data structure/Stack/palindrome.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Data structure/Stack/palindrome.c -------------------------------------------------------------------------------- /c/Modularity and Organization/Directory Structure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Modularity and Organization/Directory Structure/README.md -------------------------------------------------------------------------------- /c/Modularity and Organization/Functions/Character Classification Functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Modularity and Organization/Functions/Character Classification Functions/README.md -------------------------------------------------------------------------------- /c/Modularity and Organization/Functions/Data Conversion Functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Modularity and Organization/Functions/Data Conversion Functions/README.md -------------------------------------------------------------------------------- /c/Modularity and Organization/Functions/Math Functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Modularity and Organization/Functions/Math Functions/README.md -------------------------------------------------------------------------------- /c/Modularity and Organization/Functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Modularity and Organization/Functions/README.md -------------------------------------------------------------------------------- /c/Modularity and Organization/Functions/String Manipulation Functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Modularity and Organization/Functions/String Manipulation Functions/README.md -------------------------------------------------------------------------------- /c/Modularity and Organization/Header Files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Modularity and Organization/Header Files/README.md -------------------------------------------------------------------------------- /c/Modularity and Organization/Libraries and frameworks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Modularity and Organization/Libraries and frameworks/README.md -------------------------------------------------------------------------------- /c/Modularity and Organization/Preprocessor directives/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Modularity and Organization/Preprocessor directives/README.md -------------------------------------------------------------------------------- /c/Modularity and Organization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Modularity and Organization/README.md -------------------------------------------------------------------------------- /c/Pointers/Advanced Pointer Concepts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Pointers/Advanced Pointer Concepts/README.md -------------------------------------------------------------------------------- /c/Pointers/Common Pointer Usages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Pointers/Common Pointer Usages/README.md -------------------------------------------------------------------------------- /c/Pointers/Pointer Applications/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Pointers/Pointer Applications/README.md -------------------------------------------------------------------------------- /c/Pointers/Pointer Best Practices/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Pointers/Pointer Best Practices/README.md -------------------------------------------------------------------------------- /c/Pointers/Pointer Debugging and Troubleshooting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Pointers/Pointer Debugging and Troubleshooting/README.md -------------------------------------------------------------------------------- /c/Pointers/Pointer Operations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Pointers/Pointer Operations/README.md -------------------------------------------------------------------------------- /c/Pointers/Pointer Pitfalls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Pointers/Pointer Pitfalls/README.md -------------------------------------------------------------------------------- /c/Pointers/Pointer Security/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Pointers/Pointer Security/README.md -------------------------------------------------------------------------------- /c/Pointers/Pointer to Complex Types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Pointers/Pointer to Complex Types/README.md -------------------------------------------------------------------------------- /c/Pointers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Pointers/README.md -------------------------------------------------------------------------------- /c/Pointers/Types of Pointers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Pointers/Types of Pointers/README.md -------------------------------------------------------------------------------- /c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/README.md -------------------------------------------------------------------------------- /c/Software Development Practices/Build and Automation Tools/Makefile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/Software Development Practices/Build and Automation Tools/Makefile/README.md -------------------------------------------------------------------------------- /c/System Call/File Management/File IO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/System Call/File Management/File IO.md -------------------------------------------------------------------------------- /c/System Call/File Management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/System Call/File Management/README.md -------------------------------------------------------------------------------- /c/System Call/Memory Management/Dynamic Memory Allocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/System Call/Memory Management/Dynamic Memory Allocation.md -------------------------------------------------------------------------------- /c/System Call/Memory Management/Memory Allocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/System Call/Memory Management/Memory Allocation.md -------------------------------------------------------------------------------- /c/System Call/Memory Management/Memory Deallocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/System Call/Memory Management/Memory Deallocation.md -------------------------------------------------------------------------------- /c/System Call/Memory Management/Memory layout in c.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/System Call/Memory Management/Memory layout in c.md -------------------------------------------------------------------------------- /c/System Call/Memory Management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/System Call/Memory Management/README.md -------------------------------------------------------------------------------- /c/System Call/Process Control/Process Management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/System Call/Process Control/Process Management/README.md -------------------------------------------------------------------------------- /c/System Call/Process Control/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/System Call/Process Control/README.md -------------------------------------------------------------------------------- /c/System Call/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/System Call/README.md -------------------------------------------------------------------------------- /c/System Call/Signals/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c/System Call/Thread Management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/System Call/Thread Management/README.md -------------------------------------------------------------------------------- /c/math.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/c/math.PNG -------------------------------------------------------------------------------- /docs/DeepC_slides_oct2011.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/docs/DeepC_slides_oct2011.pdf -------------------------------------------------------------------------------- /docs/p.pdfhall.com_how-to-count_5b6fe3e6097c47f3268b4637.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/docs/p.pdfhall.com_how-to-count_5b6fe3e6097c47f3268b4637.pdf -------------------------------------------------------------------------------- /libft/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/Makefile -------------------------------------------------------------------------------- /libft/en.subject.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/en.subject.pdf -------------------------------------------------------------------------------- /libft/ft_atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_atoi.c -------------------------------------------------------------------------------- /libft/ft_bzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_bzero.c -------------------------------------------------------------------------------- /libft/ft_calloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_calloc.c -------------------------------------------------------------------------------- /libft/ft_isalnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_isalnum.c -------------------------------------------------------------------------------- /libft/ft_isalpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_isalpha.c -------------------------------------------------------------------------------- /libft/ft_isascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_isascii.c -------------------------------------------------------------------------------- /libft/ft_isdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_isdigit.c -------------------------------------------------------------------------------- /libft/ft_isprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_isprint.c -------------------------------------------------------------------------------- /libft/ft_itoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_itoa.c -------------------------------------------------------------------------------- /libft/ft_lstadd_back.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_lstadd_back.c -------------------------------------------------------------------------------- /libft/ft_lstadd_front.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_lstadd_front.c -------------------------------------------------------------------------------- /libft/ft_lstclear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_lstclear.c -------------------------------------------------------------------------------- /libft/ft_lstdelone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_lstdelone.c -------------------------------------------------------------------------------- /libft/ft_lstiter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_lstiter.c -------------------------------------------------------------------------------- /libft/ft_lstlast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_lstlast.c -------------------------------------------------------------------------------- /libft/ft_lstnew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_lstnew.c -------------------------------------------------------------------------------- /libft/ft_lstsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_lstsize.c -------------------------------------------------------------------------------- /libft/ft_memchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_memchr.c -------------------------------------------------------------------------------- /libft/ft_memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_memcmp.c -------------------------------------------------------------------------------- /libft/ft_memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_memcpy.c -------------------------------------------------------------------------------- /libft/ft_memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_memmove.c -------------------------------------------------------------------------------- /libft/ft_memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_memset.c -------------------------------------------------------------------------------- /libft/ft_putchar_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_putchar_fd.c -------------------------------------------------------------------------------- /libft/ft_putendl_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_putendl_fd.c -------------------------------------------------------------------------------- /libft/ft_putnbr_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_putnbr_fd.c -------------------------------------------------------------------------------- /libft/ft_putstr_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_putstr_fd.c -------------------------------------------------------------------------------- /libft/ft_split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_split.c -------------------------------------------------------------------------------- /libft/ft_strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_strchr.c -------------------------------------------------------------------------------- /libft/ft_strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_strdup.c -------------------------------------------------------------------------------- /libft/ft_striteri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_striteri.c -------------------------------------------------------------------------------- /libft/ft_strjoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_strjoin.c -------------------------------------------------------------------------------- /libft/ft_strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_strlcat.c -------------------------------------------------------------------------------- /libft/ft_strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_strlcpy.c -------------------------------------------------------------------------------- /libft/ft_strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_strlen.c -------------------------------------------------------------------------------- /libft/ft_strmapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_strmapi.c -------------------------------------------------------------------------------- /libft/ft_strncmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_strncmp.c -------------------------------------------------------------------------------- /libft/ft_strnstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_strnstr.c -------------------------------------------------------------------------------- /libft/ft_strrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_strrchr.c -------------------------------------------------------------------------------- /libft/ft_strtrim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_strtrim.c -------------------------------------------------------------------------------- /libft/ft_substr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_substr.c -------------------------------------------------------------------------------- /libft/ft_tolower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_tolower.c -------------------------------------------------------------------------------- /libft/ft_toupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/ft_toupper.c -------------------------------------------------------------------------------- /libft/libft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zelhajou/ft_core_libft/HEAD/libft/libft.h --------------------------------------------------------------------------------