#include <sys/stat.h>

#include <test_stat_file.c>

void
test_stat_root(char *url)
{
	struct ftpstat fs;

	test_login(url);

	test_stat_aux("/", &fs, 1);

	if (! S_ISDIR(fs.fs_mode))
	{
		fprintf(stderr, "S_ISDIR() is false for \"/\"!\n");
		exit(1);
	}
}




syntax highlighted by Code2HTML, v. 0.9.1