#include <sys/stat.h>
#if (!defined(_MSC_VER) && !defined(_WIN32))
#  include <sys/types.h>
#  include <unistd.h>
#endif
int main(void) { struct stat buf; 
  if (stat (".", &buf) || !(buf.st_mode & S_IFDIR)) return 1;
  return 0;
}


syntax highlighted by Code2HTML, v. 0.9.1