Because putnbr and putstr aren’t enough
This project is pretty straight forward. You will recode printf. You will mainly learn how to use variadic arguments.
이 프로젝트는 printf 함수의 간소화된 버전이 포함된 라이브러리를 작성하는 것 입니다.
이 함수는 C 언어로 작성되었으므로 실행하려면 gcc 컴파일러와 일부 표준 **C 라이브러리가 필요합니다.
1. Compiling the library
$ make2. Using it in your code
코드에서 라이브러리 함수를 사용하려면 해당 헤더를 포함하기만 하면 됩니다:
#include "ft_printf.h"