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
signature.asc
Description: OpenPGP digital signature

