2009年7月27日 星期一

語言中心的課

http://my.nthu.edu.tw/~language/cont_edu_regulations_c20.html
要花六十五分鐘考試
和狗約時間

2009年7月19日 星期日

2009年七夕情人節

今天 是我們的法定在一起的日子
之所以說法定 其實是六月一號我們就算在一起了
但是還不想公開
所以就跟大家說是七夕情人節
不過潛意識裡 還是希望有一個紀念日有別於狗的生日
so .
決定在這天 給狗一個特別的手工作品:
出國的紀念書

plan: 7/28 due
7/20 拿照片到公司
7/21 挑好16張紙的照片 ref link.
7/22 做好2-5張 (共八面)
7/23 做好6-9張
7/24 做好6-9張
7/25

2009年7月15日 星期三

2009年7月3日 星期五

自動

pixnet 真的太慢了
以後大概得搬來這邊了 本來想一邊是花痴一邊專業一點的 看來沒用了

/*----------------------------------------------------
*/
/* This file try auto fill funciton name in the begin of debug 20090703 smo
*/
/* Key word: __VA_ARGS__
*/
/*------------------------------------------------------
*/

#include
#include

/*if no ##, there must be one argument at least. */
#define mldsnppxyFuncPrint(a,...) mldsnppxyDbg(__PRETTY_FUNCTION__,a,##__VA_ARGS__)

int mldsnppxyDbg(char* funcName,char* format,...)
{
char buffer[256];
printf("@%s: ",funcName);
va_list args;
va_start (args, format);
vsprintf (buffer,format, args);
printf (buffer);
va_end (args);
return 0;
}

int main()
{
int testInt=3;
char testStr[]="smo";

mldsnppxyFuncPrint("int =%d, string= %s\n\n",testInt,testStr);
return 0;

}