{"id":20186262,"url":"https://github.com/ugolinolle/libft","last_synced_at":"2025-03-03T06:45:04.632Z","repository":{"id":192751961,"uuid":"687338250","full_name":"UgolinOlle/libft","owner":"UgolinOlle","description":"📚 • This project is part of the curriculum at 42 School and involves recreating several standard C library functions as well as other useful utilities.","archived":false,"fork":false,"pushed_at":"2024-01-29T07:23:13.000Z","size":28,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-13T18:17:11.570Z","etag":null,"topics":["42","c","libft","libft-42"],"latest_commit_sha":null,"homepage":"https://ugolin-olle.com/projets/libft","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/UgolinOlle.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2023-09-05T06:45:49.000Z","updated_at":"2024-07-29T08:25:14.000Z","dependencies_parsed_at":null,"dependency_job_id":"f6a43747-3430-4f6c-a396-3ca7e80af553","html_url":"https://github.com/UgolinOlle/libft","commit_stats":null,"previous_names":["ugolinolle/libft"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UgolinOlle%2Flibft","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UgolinOlle%2Flibft/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UgolinOlle%2Flibft/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UgolinOlle%2Flibft/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/UgolinOlle","download_url":"https://codeload.github.com/UgolinOlle/libft/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241622594,"owners_count":19992501,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["42","c","libft","libft-42"],"created_at":"2024-11-14T03:16:36.144Z","updated_at":"2025-03-03T06:45:04.604Z","avatar_url":"https://github.com/UgolinOlle.png","language":"C","readme":"# Libft - 42 School\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\nWelcome to the Libft repository. This project is part of the curriculum at 42 School and involves recreating several standard C library functions as well as other useful utilities.\n\n## Table of Contents\n\n- [Introduction](#introduction)\n- [Installation](#installation)\n- [Usage](#usage)\n- [Functions](#functions)\n  - [srcs/file](#srcsfile)\n  - [srcs/mem](#srcsmem)\n  - [srcs/misc](#srcsmisc)\n  - [srcs/nbr](#srcsnbr)\n  - [srcs/str](#srcsstr)\n- [Contribution](#contribution)\n- [License](#license)\n\n## Introduction\n\nThe Libft library is a fundamental project at 42 School aimed at strengthening your C programming skills. It contains custom implementations of many standard C library functions, as well as other useful functions that you can use in your projects.\n\n## Installation\n\nTo use the Libft library, follow these steps:\n\n1. Clone this repository to your computer.\n\n```bash\ngit clone https://github.com/yourusername/libft.git\n```\n\n2. Compile the library by running the make command at the root of the project.\n\n```bash\nmake\n```\n\n3. You will get a `libft.a` file that you can link to your projects.\n\n## Usage\n\nTo use the Libft library in your projects, you need to include the libft.h header file in your source files and link the libft.a library during compilation.\n\nExample compilation:\n\n```bash\ngcc -o my_program my_program.c -L. -lft\n```\n\n## Functions\n\nThe Libft library contains many useful functions organized into directories. Here are the directories and their respective functions:\n\n```\n- srcs/file\n  - ft_putchar_fd.c\n  - ft_putendl_fd.c\n  - ft_putnbr_fd.c\n  - ft_putstr_fd.c\n- srcs/mem\n  - ft_bzero.c\n  - ft_calloc.c\n  - ft_memchr.c\n  - ft_memcmp.c\n  - ft_memcpy.c\n  - ft_memmove.c\n  - ft_memset.c\n- srcs/misc\n  - ft_isalnum.c\n  - ft_isalpha.c\n  - ft_isascii.c\n  - ft_isdigit.c\n  - ft_isprint.c\n- srcs/nbr\n  - ft_atoi.c\n  - ft_itoa.c\n- srcs/str\n  - ft_split.c\n  - ft_strchr.c\n  - ft_strdup.c\n  - ft_striteri.c\n  - ft_strjoin.c\n  - ft_strlcat.c\n  - ft_strlcpy.c\n  - ft_strlen.c\n  - ft_strmapi.c\n  - ft_strncmp.c\n  - ft_strnstr.c\n  - ft_strrchr.c\n  - ft_strtrim.c\n  - ft_substr.c\n  - ft_tolower.c\n  - ft_toupper.c\n```\n\nFeel free to explore the library to discover all available functions.\n\n## Contribution\n\nContributions are welcome! If you'd like to contribute to this project, please follow these steps:\n\n1. Fork this repository.\n2. Create a branch for your feature or fix.\n3. Make your changes.\n4. Submit a pull request to the master branch of this repository.\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fugolinolle%2Flibft","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fugolinolle%2Flibft","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fugolinolle%2Flibft/lists"}