Hi,
Václav Haisman wrote:
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.
this is why I mentioned that it is C++.
Erich
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/