ls的簡單實現

main.c #include "ls.h" int main(int argc,char* argv[]) { DIR *fp_dir=opendir(argv[1]); struct dirent* pent; if(NULL==fp_dir) { perror("open error"); exit(-1); }
相關文章
相關標籤/搜索