1 #include <stdio.h> 2 #include <stdarg.h> 3 snprintf(char * restrict s,size_t n,const char * restrict fmt,...)4 int snprintf(char *restrict s, size_t n, const char *restrict fmt, ...) 5 { 6 return 0; 7 } 8 9