- 论坛徽章:
- 0
|
今天用glob写一个程序,但是结果让我不理解
for(i=0;i<result.gl_pathc+PRESERVE+1;i++){
printf("%s:%p ",result.gl_pathv,result.gl_pathv);
}
/* well,here has some strange things,as the documentation says
the last pointer should be null,but here goes wrong
and the result.gl_pathv[result_gl_pathc+PRESERVE+1]==(null) and address is (nil)
what does this mean */
assert(!(result.gl_pathv[result.gl_pathc+PRESERVE+1]));
按照man上的说发,最后一个指针应该是NULL,但是我用printf打印出来,最后一个指针是
(null) nil),而assert(!(result.gl_pathv[result.gl_pathc+PRESERVE+1]));为假??
究竟(null)和(nil)分别代表什么意思呢?
这个是整个程序
/* -*- linux-c -*- */
/* this file is to using the function of 'glob'
this function is useful when u want to use the wildcard to match the files */
#include <stdio.h>
#include <errno.h>
#include <glob.h>
#include <assert.h>
#define NELEMS(x) ((sizeof(x))/(sizeof((x)[0])))
static char *progname;
static char *file_pattern[]={
"./r*.c",
"./m*.pl",
"./h*.c"
};
int main(int argc,char **argv)
{
int i;
int flags=0;
glob_t result;
int ret;
progname=argv[0];
#define PRESERVE 2
/* preserve 2 slots at the fiest */
result.gl_offs=PRESERVE;
flags=GLOB_DOOFFS;/* the flag of slot */
for(i=0;i<NELEMS(file_pattern);i++){
ret=glob(file_pattern,flags,NULL,&result);
if(ret){
fprintf(stderr,"%s:problems with %s(%s),stopping early\n",
progname,file_pattern,
((ret==GLOB_ABORTED)?"filesystem problem":
(ret==GLOB_NOMATCH)?"no match of pattern":
(ret==GLOB_NOSPACE)?"no dynamic memory":
"unknown problem" );
break;
}
flags=GLOB_DOOFFS|GLOB_APPEND;/* append others matches at the last */
}
/* we can add 2 items in the slots */
result.gl_pathv[0]="ls";
result.gl_pathv[1]="-l";
for(i=0;i<result.gl_pathc+PRESERVE+1;i++){
printf("%s:%p ",result.gl_pathv,result.gl_pathv);
}
assert(!(result.gl_pathv[result.gl_pathc+PRESERVE+1]));
putchar('\n');
globfree(&result);
return 0;
} |
|