2016年5月27日
摘要: 1 #include 2 #include 3 4 void func(char* format, va_list ptr); 5 void print(char* format,...); 6 7 void print(char* format,...) 8 { 9 va_list ptr; 10 va_list ptr_tmp; 11... 阅读全文
posted @ 2016-05-27 11:34 川洋 阅读(1261) 评论(0) 推荐(0) 编辑
摘要: http://stackoverflow.com/questions/4958384/what-is-the-format-of-the-x86-64-va-list-structure 这是我在stackoverflow上摘录的,上面是链接,va_list实际上是一个只有一个元素的结构体数组 I 阅读全文
posted @ 2016-05-27 11:12 川洋 阅读(932) 评论(0) 推荐(0) 编辑