摘要: c 可变参数 :gcc -g -Wall -O0 fuck.c -o fuck#include <stdlib.h> /* 說明 malloc, NULL, size_t */#include <stdarg.h> /* 說明 va_ 相關類型和函數 */#include <string.h> /* 說明 strcat 等 */char *vstrcat(const char *first, ...){ size_t len; char *retbuf; va_list argp; char *p; if(first == NULL) return NULL 阅读全文
posted @ 2011-07-04 18:48 wangkangluo1 阅读(269) 评论(0) 推荐(0) 编辑
摘要: html 模板1:download<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/h 阅读全文
posted @ 2011-07-04 15:12 wangkangluo1 阅读(803) 评论(0) 推荐(0) 编辑