我可以在我的函數ptr * Os_printf * 中打印2個以上的參數,但我的函數僅適用於1個參數。參數列表中的函數指針
例如 - >
Os_printf("Moon %d %d",55,5);
OUT:
月55 5
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
char db[50];
void test_1(int (*debug)())
{
debug("JOY %d %d \n",4,55);
}
volatile int (*ptr_fscreener)(char * __restrict, const char * __restrict, ...);
void Os_formater(int (*debug)())
{
ptr_fscreener=debug;
}
void Os_printf(const char * __restrict out,void**d)
{
va_list args;
char db[50];
ptr_fscreener(db,out,d);
puts(db);
}
int main(void) {
Os_formater(sprintf);
Os_printf("Moon %d",55);
test_1(printf);
puts("!!!Hello World!!!"); /* prints !!!Hello World!!! */
return EXIT_SUCCESS;
}
/******* OUTPUT For example ******/
Moon 55
JOY 4 55
!!!Hello World!!!
如果你問,答案很簡單:HTTP:// WWW。 gnu.org/software/libc/manual/html_node/Variadic-Functions.html,但你的措辭是一個陳述,而不是一個問題,所以很難說。 – tbert 2012-04-23 23:31:00