{"id":15473488,"url":"https://github.com/seluj78/ft_printf","last_synced_at":"2025-02-25T17:42:46.915Z","repository":{"id":118615443,"uuid":"73842420","full_name":"Seluj78/ft_printf","owner":"Seluj78","description":"This repository hosts the source code for my rework of the printf function called ft_printf. It's a project made for the school 42 and I'll keep updating/improving it over time","archived":false,"fork":false,"pushed_at":"2017-05-19T15:47:13.000Z","size":609,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-06T01:48:47.955Z","etag":null,"topics":["42","42born2code","c","printf"],"latest_commit_sha":null,"homepage":"http://jules.lasnespace.com","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/Seluj78.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-11-15T18:19:17.000Z","updated_at":"2020-10-19T19:38:24.000Z","dependencies_parsed_at":"2023-03-23T09:32:01.608Z","dependency_job_id":null,"html_url":"https://github.com/Seluj78/ft_printf","commit_stats":{"total_commits":188,"total_committers":12,"mean_commits":"15.666666666666666","dds":"0.23404255319148937","last_synced_commit":"f3188cef8b351f1f002fdcd08e4bdf7b1d5a6bdc"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Seluj78%2Fft_printf","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Seluj78%2Fft_printf/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Seluj78%2Fft_printf/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Seluj78%2Fft_printf/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Seluj78","download_url":"https://codeload.github.com/Seluj78/ft_printf/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240718893,"owners_count":19846481,"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","42born2code","c","printf"],"created_at":"2024-10-02T02:54:02.453Z","updated_at":"2025-02-25T17:42:46.859Z","avatar_url":"https://github.com/Seluj78.png","language":"C","readme":"# ft_printf [![Build Status](https://travis-ci.org/Seluj78/ft_printf.svg?branch=master)](https://travis-ci.org/Seluj78/ft_printf)\n\n### About\nThis repository hosts the source code for my rework of the c library function printf (stdio.h)\nwhich I've worked on for about 2 months with [estephan](https://github.com/ElliottStephan \"estephan\").\n\n\n### How it works:\n\nJust like the real one, well almost, it's missing a few features that'll be added over time\n\n### Installation:\n\n`make install` then `make` to compile into ft_printf.a (libft needed, see below)\n\nYou need my libft to be able to use the ft_printf function.\n\nThis is the layout recommended for this lib to work because it'll look for the file libft.h located in `../../libft/includes/` (Relative path)\n\n```text\nft_printf\n    FILES\nlibft\n    FILES\n```\n\nI recommend checking out the README.md from [my libft](https://github.com/Seluj78/libft \"My libft\") for more information\n\n### Usage:\n\nJust like a normal printf in C, here's the type code you would want to write (Using my libft as a dependency else it wont work):\n\n```objectivec\n#include \"libft.h\"\n\nint main(int argc, char **argv)\n{\n    (void)argc;\n    (void)argv;\n    ft_printf(\"Here's a string %s and here's an integer %d\\n\", \"I AM A STRING\", 42);\n    return (0);\n}\n```\n\nAnd here's the output one would get (Works with gcc and clang):\n```commandline\n$\u003e gcc main.c libft.a\n$\u003e ./a.out\nHere's a string I AM A STRING and here's an integer 42\n$\u003e\n```\n\n### Contributing\n\nI'm far from being a C expert and suspect there are many ways to improve – if you have ideas on how to make ft_printf easier to maintain (and faster), don't hesitate to fork and send pull requests!\n\nYou can also take a look through the open issues and help where you can.","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseluj78%2Fft_printf","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fseluj78%2Fft_printf","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseluj78%2Fft_printf/lists"}