Skip to content

Latest commit

 

History

1 Commit

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Libft

Description
Libft is a custom C library created as part of a programming curriculum. It contains a collection of commonly used functions in C programming to aid in various tasks, ranging from string manipulation to memory allocation.
Features
*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.
Getting Started
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;
}
Documentation
For detailed documentation on each function and its usage, refer to the comments in individual source files. Additionally, a libft.h file is provided with function prototypes.
Contribution
Contributions are welcome! Feel free to submit issues, feature requests, or pull requests.

About

LibFT-42

Resources

Stars

2 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages