摘要:
一般vs2005打开文件时会自动侦测文件编码,自动以相应的编码格式打开。但是如果不认识的编码,就会出现乱码。 Set VS2005 to use without BOM UTF-8 encoding files. Tools -> Options -> Environment -> Document 阅读全文
摘要:
void signaldemo_test(void) { struct itimerval tv, otv; signal(SIGALRM, sigFunc); //how long to run the first time tv.it_value.tv_sec = 3; tv.it_value.tv_usec = 0; //after the ... 阅读全文