static int (*nftw_fn)(const char *fpath, const struct stat *sb, int typeflag, struct FTW *ftwbuf);
static int dentfind(const char *fname, int n);
static void move_cursor(int target, int ignore_scrolloff);
-static bool getutil(const char *util);
+static bool getutil(char *util);
/* Functions */
return NULL;
}
-static bool getutil(const char *util)
+static inline bool getutil(char *util)
{
- char buf[8];
-
- if (!get_output(buf, 8, "which", util, NULL, FALSE))
- return FALSE;
-
- return TRUE;
+ return spawn("which", util, NULL, NULL, F_NORMAL | F_NOTRACE) == 0;
}
/*