util.h
上传用户:looem2003
上传日期:2014-07-20
资源大小:13733k
文件大小:0k
源码类别:

打印编程

开发平台:

Visual C++

  1. #include <stdio.h>
  2. #include <string>
  3. void log(const char  *text);
  4. #define swap(type, a, b) { type t; t=a; a=b; b=t; }