Prints a string with specified formatting, a recreation of the ubiquitous printf() function.
Within this repository are all the files necessary for the function to work, each file contains at most five functions. In addition to the function files and the README, there is also a header file containing prototypes, and a manual page file.
_printf("hello");
hello
_printf("here is a number: %i", 1234);
here is a number: 1234
_printf("here is a string: %s and a character: %c", "hi", 'c');
here is a string: hi and a character: c