{"id":16430200,"url":"https://github.com/its-alex/libft","last_synced_at":"2026-06-10T01:31:11.542Z","repository":{"id":97418104,"uuid":"72008835","full_name":"Its-Alex/Libft","owner":"Its-Alex","description":"Libft at 42 aim to reproduce most of libc's functions","archived":false,"fork":false,"pushed_at":"2018-04-15T10:21:09.000Z","size":132,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-30T17:48:21.290Z","etag":null,"topics":["c","itoa","libc","make","makefile","putchar","putendl","putnbr","putstr","sort","strjoin"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Its-Alex.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-10-26T14:00:18.000Z","updated_at":"2023-12-11T12:26:18.000Z","dependencies_parsed_at":null,"dependency_job_id":"4924dc10-960a-4aa2-a10b-86eacb1ee4fa","html_url":"https://github.com/Its-Alex/Libft","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Its-Alex/Libft","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Its-Alex%2FLibft","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Its-Alex%2FLibft/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Its-Alex%2FLibft/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Its-Alex%2FLibft/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Its-Alex","download_url":"https://codeload.github.com/Its-Alex/Libft/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Its-Alex%2FLibft/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34133404,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-09T02:00:06.510Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["c","itoa","libc","make","makefile","putchar","putendl","putnbr","putstr","sort","strjoin"],"created_at":"2024-10-11T08:26:02.290Z","updated_at":"2026-06-10T01:31:11.511Z","avatar_url":"https://github.com/Its-Alex.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Libft\n\nLibrary who contain most of libc's functions\n\n## How to\n\n### Compile\n\n```\n$ make\n```\n\n### Clean\n\nDelete all compilation files\n\n```\n$ make clean\n```\n\nDelete all compilations files and binarie\n\n```\n$ make fclean\n```\n\n## Current added\n\n* [x] [atoi.c](/srcs/ft_atoi.c)\n* [x] [bzero.c](/srcs/ft_bzero.c)\n* [x] [error.c](/srcs/ft_error.c)\n* [x] [freetab.c](/srcs/ft_freetab.c)\n* [x] [get_next_line.c](/srcs/ft_get_next_line.c)\n* [x] [isalnum.c](/srcs/ft_isalnum.c)\n* [x] [isalpha.c](/srcs/ft_isalpha.c)\n* [x] [isascii.c](/srcs/ft_isascii.c)\n* [x] [isdigit.c](/srcs/ft_isdigit.c)\n* [x] [isprint.c](/srcs/ft_isprint.c)\n* [x] [itoa_base.c](/srcs/ft_itoa_base.c)\n* [x] [itoa.c](/srcs/ft_itoa.c)\n* [x] [lstadd.c](/srcs/ft_lstadd.c)\n* [x] [lstaddend.c](/srcs/ft_lstaddend.c)\n* [x] [lstdel.c](/srcs/ft_lstdel.c)\n* [x] [lstdelone.c](/srcs/ft_lstdelone.c)\n* [x] [lstiter.c](/srcs/ft_lstiter.c)\n* [x] [lstmap.c](/srcs/ft_lstmap.c)\n* [x] [lstnew.c](/srcs/ft_lstnew.c)\n* [x] [lststr_sort.c](/srcs/ft_lststr_sort.c)\n* [x] [lststr_sortrev.c](/srcs/ft_lststr_sortrev.c)\n* [x] [max.c](/srcs/ft_max.c)\n* [x] [memalloc.c](/srcs/ft_memalloc.c)\n* [x] [memccpy.c](/srcs/ft_memccpy.c)\n* [x] [memchr.c](/srcs/ft_memchr.c)\n* [x] [memcmp.c](/srcs/ft_memcmp.c)\n* [x] [memcpy.c](/srcs/ft_memcpy.c)\n* [x] [memdel.c](/srcs/ft_memdel.c)\n* [x] [memmove.c](/srcs/ft_memmove.c)\n* [x] [memset.c](/srcs/ft_memset.c)\n* [x] [min.c](/srcs/ft_min.c)\n* [x] [miniprintf.c](/srcs/ft_miniprintf.c)\n* [x] [putchar.c](/srcs/ft_putchar.c)\n* [x] [putchar_fd.c](/srcs/ft_putchar_fd.c)\n* [x] [putdbl.c](/srcs/ft_putdbl.c)\n* [x] [putdbl_fd.c](/srcs/ft_putdbl_fd.c)\n* [x] [putendl.c](/srcs/ft_putendl.c)\n* [x] [putendl_fd.c](/srcs/ft_putendl_fd.c)\n* [x] [putlong.c](/srcs/ft_putlong.c)\n* [x] [putlong_fd.c](/srcs/ft_putlong_fd.c)\n* [x] [putnbr.c](/srcs/ft_putnbr.c)\n* [x] [putnbr_fd.c](/srcs/ft_putnbr_fd.c)\n* [x] [putstr.c](/srcs/ft_putstr.c)\n* [x] [putstr_color.c](/srcs/ft_putstr_color.c)\n* [x] [putstr_fd.c](/srcs/ft_putstr_fd.c)\n* [x] [sort_int_tab.c](/srcs/ft_sort_int_tab.c)\n* [x] [strcat.c](/srcs/ft_strcat.c)\n* [x] [strchr.c](/srcs/ft_strchr.c)\n* [x] [strclr.c](/srcs/ft_strclr.c)\n* [x] [strcmp.c](/srcs/ft_strcmp.c)\n* [x] [strcpy.c](/srcs/ft_strcpy.c)\n* [x] [strdel.c](/srcs/ft_strdel.c)\n* [x] [strdup.c](/srcs/ft_strdup.c)\n* [x] [strequ.c](/srcs/ft_strequ.c)\n* [x] [striter.c](/srcs/ft_striter.c)\n* [x] [striteri.c](/srcs/ft_striteri.c)\n* [x] [strjoin.c](/srcs/ft_strjoin.c)\n* [x] [strjoin_free.c](/srcs/ft_strjoin_free.c)\n* [x] [strlcat.c](/srcs/ft_strlcat.c)\n* [x] [strlen.c](/srcs/ft_strlen.c)\n* [x] [strmap.c](/srcs/ft_strmap.c)\n* [x] [strmapi.c](/srcs/ft_strmapi.c)\n* [x] [strncat.c](/srcs/ft_strncat.c)\n* [x] [strncmp.c](/srcs/ft_strncmp.c)\n* [x] [strncpy.c](/srcs/ft_strncpy.c)\n* [x] [strnequ.c](/srcs/ft_strnequ.c)\n* [x] [strnew.c](/srcs/ft_strnew.c)\n* [x] [strnstr.c](/srcs/ft_strnstr.c)\n* [x] [strrchr.c](/srcs/ft_strrchr.c)\n* [x] [strrev.c](/srcs/ft_strrev.c)\n* [x] [strsplit.c](/srcs/ft_strsplit.c)\n* [x] [strstr.c](/srcs/ft_strstr.c)\n* [x] [strsub.c](/srcs/ft_strsub.c)\n* [x] [strtrim.c](/srcs/ft_strtrim.c)\n* [x] [swap.c](/srcs/ft_swap.c)\n* [x] [tolower.c](/srcs/ft_tolower.c)\n* [x] [toupper.c](/srcs/ft_toupper.c)\n\n\n## License\n\n[MIT](https://fr.wikipedia.org/wiki/Licence_MIT)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fits-alex%2Flibft","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fits-alex%2Flibft","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fits-alex%2Flibft/lists"}