C++程序  |  14行  |  197 B

#include "tests.h"

#include <sys/stat.h>
#include <unistd.h>

void
skip_if_unavailable(const char *const path)
{
	struct stat st;

	if (stat(path, &st))
		perror_msg_and_skip("stat: %s", path);
}