Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/markjso/ft_printf
Recode the original printf function in C using variadic functions.
https://github.com/markjso/ft_printf
Last synced: 1 day ago
JSON representation
Recode the original printf function in C using variadic functions.
- Host: GitHub
- URL: https://github.com/markjso/ft_printf
- Owner: markjso
- Created: 2022-05-03T03:53:14.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-27T07:24:50.000Z (over 1 year ago)
- Last Synced: 2024-11-11T03:14:17.603Z (about 2 months ago)
- Language: C
- Homepage:
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ft_printf
The C library function int printf(const char *format, ...) sends formatted output to stdout.#### Parameters
format: The format argument is a string containing C language conversion specifications. The conversion specification specifies the notation, alignment, significant digits, field width, and other aspects of the output format. To represent non-printing characters, such as newlines and tabs, the format string may contain escape characters.
argument-list: Depending on the format string, the function may require additional arguments.
If successful, the total number of characters written is returned. On failure, a negative number is returned.