Custom C Library
Libft is a custom C library that provides a collection of standard functions, designed to be reusable in various C projects. This library includes implementations of fundamental operations, allowing developers to streamline their code by using established functionalities.
- Makefile: Build automation script for compiling the library.
- ft_atoi.c: Convert a string to an integer.
- ft_bzero.c: Set a block of memory to zero.
- ft_calloc.c: Allocate and zero-initialize memory.
- ft_isalnum.c: Check if a character is alphanumeric.
- ft_isalpha.c: Check if a character is alphabetic.
- ft_isascii.c: Check if a character is within the ASCII range.
- ft_isdigit.c: Check if a character is a digit.
- ft_isprint.c: Check if a character is printable.
- ft_itoa.c: Convert an integer to a string.
- ft_lstadd_back.c: Add a new element to the end of a linked list.
- ft_lstadd_front.c: Add a new element to the beginning of a linked list.
- ft_lstclear.c: Clear the contents of a linked list.
- ft_lstdelone.c: Delete a specific element from a linked list.
- ft_lstiter.c: Apply a function to each element of a linked list.
- ft_lstlast.c: Retrieve the last element of a linked list.
- ft_lstmap.c: Create a new list resulting from applying a function to each element of an existing list.
- ft_lstnew.c: Create a new list element.
- ft_lstsize.c: Get the size of a linked list.
- ft_memchr.c: Locate the first occurrence of a character in a block of memory.
- ft_memcmp.c: Compare two blocks of memory.
- ft_memcpy.c: Copy memory from one location to another.
- ft_memmove.c: Move a block of memory to another location.
- ft_memset.c: Fill a block of memory with a specified value.
- ft_putchar_fd.c: Print a character to a specified file descriptor.
- ft_putendl_fd.c: Print a string followed by a newline to a specified file descriptor.
- ft_putnbr_fd.c: Print an integer to a specified file descriptor.
- ft_putstr_fd.c: Print a string to a specified file descriptor.
- ft_split.c: Split a string into an array of substrings.
- ft_strchr.c: Locate the first occurrence of a character in a string.
- ft_strdup.c: Duplicate a string.
- ft_striteri.c: Apply a function to each character of a string, passing its index as an argument.
- ft_strjoin.c: Concatenate two strings.
- ft_strlcat.c: Concatenate strings with a size limit.
- ft_strlcpy.c: Copy a string to a specified size.
- ft_strlen.c: Get the length of a string.
- ft_strmapi.c: Apply a function to each character of a string, passing its index as an argument.
- ft_strncmp.c: Compare two strings up to a specified number of characters.
- ft_strnstr.c: Locate a substring in a string up to a specified length.
- ft_strrchr.c: Locate the last occurrence of a character in a string.
- ft_strtrim.c: Trim whitespace characters from the beginning and end of a string.
- ft_substr.c: Extract a substring from a string.
- ft_tolower.c: Convert a character to lowercase.
- ft_toupper.c: Convert a character to uppercase.
- libft.h: Header file declaring function prototypes and necessary data structures.
- Provide a comprehensive set of standard functions for C development.
- Create a library that enhances code modularity and maintainability.
- Support a variety of operations, from string manipulation to memory management.
- Ensure correctness and reliability through extensive testing.
- Facilitate code reuse by offering a reusable set of functions.
- Clone the repository
git clone [email protected]:kbly538/libft.git cd libft
- Build the Static Library
make
To use the Libft library in your C projects, include the "libft.h" header file and compile your code with the compiled "libft.a" library. For example:
#include "libft.h"
#include <stdio.h>
int main() {
char str[] = "Hello, World!";
size_t length = ft_strlen(str);
printf("Length of the string: %zu\n", length);
return 0;
}
Compile with:
gcc -o my_program my_program.c libft.a