{"id":24763228,"url":"https://github.com/psigfry/libft","last_synced_at":"2025-07-09T13:08:09.232Z","repository":{"id":264489131,"uuid":"180568947","full_name":"Psigfry/libft","owner":"Psigfry","description":"libft school project","archived":false,"fork":false,"pushed_at":"2022-07-28T21:25:41.000Z","size":36,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-03-23T14:34:40.514Z","etag":null,"topics":[],"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/Psigfry.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":"2019-04-10T11:39:36.000Z","updated_at":"2022-07-28T21:10:24.000Z","dependencies_parsed_at":"2024-11-24T17:41:14.119Z","dependency_job_id":null,"html_url":"https://github.com/Psigfry/libft","commit_stats":null,"previous_names":["psigfry/libft"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Psigfry/libft","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Psigfry%2Flibft","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Psigfry%2Flibft/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Psigfry%2Flibft/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Psigfry%2Flibft/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Psigfry","download_url":"https://codeload.github.com/Psigfry/libft/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Psigfry%2Flibft/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262748474,"owners_count":23358207,"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":[],"created_at":"2025-01-28T20:26:27.103Z","updated_at":"2025-06-30T09:36:12.877Z","avatar_url":"https://github.com/Psigfry.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# libft\nlibft\n\nБиблиотека языка Си, содержащая libc и другие полезные функции. Разработан в рамках учебной программы 42 Силиконовой долины.\n\n## Installation\nClone the repository to a directory.\u003c/br\u003e\n```\nhttps://github.com/Psigfry/libft2.git\n```\n\u003c/br\u003e\nRun make to compile the library.\u003c/br\u003e\n\n```\ncd libft2 \u0026\u0026 make \u0026\u0026 make clean\n```\n\u003c/br\u003e\nЭто скомпилирует библиотеку libft, и вы получите файл libft.a, содержащий все перечисленные функции.\n## Libc functions descriptions\n\u003c/br\u003e\n\n| Function | Description |\n| -------- | ----------- |\n| ft_memset | Fill a byte string with a byte value |\n| ft_bzero | Write zeroes to a byte string |\n| ft_memcpy | Copy memory area |\n| ft_memccpy | Copy string until character found |\n| ft_memmove | Copy byte string |\n| ft_memchr | Locate byte in byte string |\n| ft_memcmp | Compare byte string |\n| ft_strlen | Find length of string |\n| ft_strdup | Save a copy of a string |\n| ft_strcpy | Copy strings |\n| ft_strncpy | Copy strings |\n| ft_strcat | Concatenate strings |\n| ft_strncat | Concatenate strings |\n| ft_strlcat | Size-bounded string copying and concatenation |\n| ft_strchr | Locate character in string |\n| ft_strrchr | Locate character in string |\n| ft_strstr | Locate substring in a string |\n| ft_strnstr | Locate substring in a string |\n| ft_strcmp | Compare strings |\n| ft_strncmp | Compare strings |\n| ft_atoi | Converts ASCII string to integer |\n| ft_isalpha | Alphabetic character test |\n| ft_isdigit | Decimal-digital character test |\n| ft_isalnum | Alphanumeric character test |\n| ft_isascii | Test for ASCII character |\n| ft_isprint | Printing character test (space character inclusive) |\n| ft_toupper | Lower case to upper case letter conversion |\n| ft_tolower | Upper case to lower case letter conversion |\n\n## Bonus functions descriptions\n\n| Function | Description |\n| -------- | ----------- |\n| ft_lstnew | Allocates and returns \"fresh\" link |\n| ft_lstdelone | Deallocates link's content and address |\n| ft_lstdel | Deallocates pointed link's and following link's contents and addresses |\n| ft_lstadd | Adds new element at the beginning of the list |\n| ft_lstiter | Iterates and applies function to every element of the list |\n| ft_lstmap | Iterates and applies function to every element of the list and stores the result of function to new list |\n\n## Extra functions descriptions\n\n| Function | Description |\n| -------- | ----------- |\n| ft_islower | Checks if a given character is in lowercase |\n| ft_isspace | Checks if a given character is a space character |\n| ft_isuppper | Checks if a given character is in upppercase |\n| ft_lstfold | Applies a particular function passed in its argument to all of the list elements |\n| ft_strconcat | Joins the array of strings with the given delimeter |\n| get_next_line | Reads one line from the given file descriptor |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpsigfry%2Flibft","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpsigfry%2Flibft","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpsigfry%2Flibft/lists"}