/**************************stdio.h*********************************/ extern int sprintf(char *__s, const char *__fmt, ...);
/** Variant of c sprintf() that uses a c fmt string that resides in program memory. */ extern int sprintf_P(char *__s, const char *__fmt, ...);
/**************************stdio.h*********************************/
AVR-GCC里stdio.h,库函数 sprintf_P怎么使用? |