*String Manipulation: Functions for string length, comparison, copy, and concatenation.
*Memory Management: Memory allocation, freeing, and manipulation functions.
*Linked Lists: Basic operations for singly linked lists.
*Character Operations: Functions to check for character types and conversions.
*Additional Utilities: Other helpful functions frequently used in C programming.
To use libft in your project:
Clone the repository: git clone <repository_url>
Include the libft.h header file in your C code.
Compile the library using the provided Makefile.
Example:
Copy code
#include "libft.h"
#include <stdio.h>
int main() {
char str[] = "Hello, world!";
int str_len = ft_strlen(str);
printf("Length of the string: %d\n", str_len);
return 0;
}Contributions are welcome! Feel free to submit issues, feature requests, or pull requests.