fopen出大事啦
void f_open (FILE* pf, char* fname, char* mode){if (NULL == (pf = fopen (fname, mode))){
perror ("Open the file");
exit (1);
}
}
这样一搞,就没用了....
连出错信息都没有...这不禁让我想起了函数返回栈指针...不知道有没有关联...
呼叫大牛....
连出错信息都没有...
2013-08-18 16:01
2013-08-18 16:35
2013-08-18 16:38
2013-08-18 17:31
2013-08-18 17:35

2013-08-18 18:48
2013-08-18 20:03