红联Linux门户
Linux帮助

UNIX系统环境下高级编程一例

发布时间:2007-06-29 00:00:46来源:红联作者:bliunxrf
最近在看着本书,感觉不错,今天先拿第一个程序练练,这是打印一个文件下的文件的程序,是第一个程序,比较简单,代码如下:

#include "err.h"
#include
int main(int argc, char* argv[])
{
DIR *dp;
struct dirent *dirp;

if(argc != 2)
err_quit("usage: ls directory_name");

if((dp = opendir(argv[1])) == NULL)
err_sys("Can't open %s", argv[1]);
while((dirp = readdir(dp)) != NULL)
printf("%s\n", dirp->d_name);

close(dp);
return 0;
}

这里用到的err.h是一个自己编写的头文件,因为这本书中用到的源文件都早apue上,我自己写了一部分,这个err_quit其中应该是变参数的,但是我还不会写,明天看看,现在太晚了,头文件如下:

#include
void err_quit(const char *fmt)
{
printf( "%s\n", fmt);

}

void err_sys(const char *f, const char *s)
{
printf("%s %s\n", f, s);
}

打印一个输出结果如下:

[root@localhost apue]# ./a.out .
.
..
apue
apue.h
rk1.c~
err.h
a.out
fig1.3.c
rk1.c

这个程序有很多需要注意的地方,虽然代码很少,但是很典型。
文章评论

共有 4 条评论

  1. wulin009 于 2012-12-13 09:32:00发表:

    good

  2. akfvip 于 2007-07-08 00:43:07发表:

    共享 共享

  3. 219.142.230.* 于 2007-06-29 14:35:11发表:

    有些职位,就是做linux底层kernel方面的。世界顶级美国企业,Good at verbal and written English. 5 working experience.

    feildingellen@163.com

    Contact me as soon as possible if you concern

  4. 北窗游客 于 2007-06-29 09:23:06发表:

    什么好书!能推荐一下吗?