This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Problem with stat


Erich Dollansky wrote:
[...]
> 
> When I run this little C++ program:
> 
> PRIVATE VOID StatLessdox (VOID)
> BEGIN
>    struct   stat     Stat;
> 
>    IF (stat ("/usr/X11R6/share/doc/lesstif-0.94.4/html/Lessdox", &Stat)
> == 0) THEN
>       printf ("Mode: %lX\n", (unsigned long) Stat.st_mode);
>       IF (S_ISDIR (Stat.st_mode)) THEN
>          printf ("Directory flag is set.\n");
>       END;
>       IF (S_ISREG (Stat.st_mode)) THEN
>          printf ("Is a regular file.\n");
>       END;
>       IF (S_ISLNK (Stat.st_mode)) THEN
>          printf ("Link flag is set.\n");
>       END;
>    END;
> END;
[...]
This is NOT C++. Not without some obscure header included before the source.

--
VH


Attachment: signature.asc
Description: OpenPGP digital signature


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]