#include
void BEGIN();
void END();
int main(int argc,char** argv){
BEGIN();
//process each line of text file
//end
END();
return 0;
}
void BEGIN(){
g_print("BEGIN:Hello,world!\n");
}
void END(){
g_print("END:Hello,world again\n");
}
阅读(1688) | 评论(0) | 转发(0) |