I'm using GCC as compiler. I wanted to know original form of printf function. So I found stdio.h file in /usr/include(I'm using CentOS 8.2 in GCP).
When I opened stdio.h file and found printf, something was written like
extern int printf(const char *__restrict __format, ...);
What is extern and ... in this sentence? How and where can I see original form of printf function?