Skip to content

Zesor/my_printf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

my_printf

Epitech Project, my_printf

Subject:

You must recode the printf function from the C library according to the C99 standard. Your function should be prototyped like the printf function. You do not have to implement the C library printf buffer handling.

You must process all printf formating flags except the following (which are optional): • float or double types management, • %n flag management, • " * " , " ’ " and " I " (capital i) flags management. You must add a %b formating flag, which prints unsigned numbers in a binary base. You must also add a %S formating flag, which prints a character string (like %s). However, non-printable characters (ASCII value strictly smaller than 32 or greater or equal than 127) must be represented by a backslash to be followed by the character’s value in octal base.

Example:

char *str = "Hello World\n";

my_printf("%s\n", str);

--> Output: Hello World

About

Project that you have to code your own printf

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors