Beispiel #1
0
int
path_canexec(const char *file)
{
   char               *s;

   s = path_test(file, EFILE_REG | EPERM_X);
   if (!s)
      return 0;
   Efree(s);
   return 1;
}
Beispiel #2
0
void main(void)
{
	path_test();
}