mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 20:01:27 +00:00
Use bool return if applicable
This commit is contained in:
parent
efc7af0c9c
commit
d8fa9356e0
61
src/nnn.c
61
src/nnn.c
|
@ -777,7 +777,7 @@ static bool showcplist()
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Initialize curses mode */
|
/* Initialize curses mode */
|
||||||
static void initcurses(void)
|
static bool initcurses(void)
|
||||||
{
|
{
|
||||||
if (initscr() == NULL) {
|
if (initscr() == NULL) {
|
||||||
char *term = getenv("TERM");
|
char *term = getenv("TERM");
|
||||||
|
@ -786,7 +786,7 @@ static void initcurses(void)
|
||||||
fprintf(stderr, "error opening TERM: %s\n", term);
|
fprintf(stderr, "error opening TERM: %s\n", term);
|
||||||
else
|
else
|
||||||
fprintf(stderr, "initscr() failed\n");
|
fprintf(stderr, "initscr() failed\n");
|
||||||
exit(1);
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
cbreak();
|
cbreak();
|
||||||
|
@ -804,6 +804,7 @@ static void initcurses(void)
|
||||||
init_pair(4, g_ctx[3].color, -1);
|
init_pair(4, g_ctx[3].color, -1);
|
||||||
}
|
}
|
||||||
settimeout(); /* One second */
|
settimeout(); /* One second */
|
||||||
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -1427,12 +1428,12 @@ static size_t mkpath(char *dir, char *name, char *out, size_t n)
|
||||||
return (xstrlcpy(out + len, name, n - len) + len);
|
return (xstrlcpy(out + len, name, n - len) + len);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int parsebmstr()
|
static bool parsebmstr()
|
||||||
{
|
{
|
||||||
int i = 0;
|
int i = 0;
|
||||||
char *bms = getenv("NNN_BMS");
|
char *bms = getenv("NNN_BMS");
|
||||||
if (!bms)
|
if (!bms)
|
||||||
return 0;
|
return TRUE;
|
||||||
|
|
||||||
while (*bms && i < BM_MAX) {
|
while (*bms && i < BM_MAX) {
|
||||||
bookmark[i].key = *bms;
|
bookmark[i].key = *bms;
|
||||||
|
@ -1443,7 +1444,7 @@ static int parsebmstr()
|
||||||
}
|
}
|
||||||
|
|
||||||
if (*bms != ':')
|
if (*bms != ':')
|
||||||
return -1; /* We support single char keys only */
|
return FALSE; /* We support single char keys only */
|
||||||
|
|
||||||
bookmark[i].loc = ++bms;
|
bookmark[i].loc = ++bms;
|
||||||
if (bookmark[i].loc[0] == '\0' || bookmark[i].loc[0] == ';') {
|
if (bookmark[i].loc[0] == '\0' || bookmark[i].loc[0] == ';') {
|
||||||
|
@ -1463,7 +1464,7 @@ static int parsebmstr()
|
||||||
++i;
|
++i;
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -1859,7 +1860,7 @@ static char *xgetgrgid(gid_t gid)
|
||||||
/*
|
/*
|
||||||
* Follows the stat(1) output closely
|
* Follows the stat(1) output closely
|
||||||
*/
|
*/
|
||||||
static int show_stats(char *fpath, char *fname, struct stat *sb)
|
static bool show_stats(char *fpath, char *fname, struct stat *sb)
|
||||||
{
|
{
|
||||||
char desc[DESCRIPTOR_LEN];
|
char desc[DESCRIPTOR_LEN];
|
||||||
char *perms = get_lsperms(sb->st_mode, desc);
|
char *perms = get_lsperms(sb->st_mode, desc);
|
||||||
|
@ -1869,13 +1870,13 @@ static int show_stats(char *fpath, char *fname, struct stat *sb)
|
||||||
xstrlcpy(g_tmpfpath + g_tmpfplen - 1, "/.nnnXXXXXX", HOME_LEN_MAX - g_tmpfplen);
|
xstrlcpy(g_tmpfpath + g_tmpfplen - 1, "/.nnnXXXXXX", HOME_LEN_MAX - g_tmpfplen);
|
||||||
else {
|
else {
|
||||||
printmsg(messages[STR_NOHOME_ID]);
|
printmsg(messages[STR_NOHOME_ID]);
|
||||||
return -1;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
int fd = mkstemp(g_tmpfpath);
|
int fd = mkstemp(g_tmpfpath);
|
||||||
|
|
||||||
if (fd == -1)
|
if (fd == -1)
|
||||||
return -1;
|
return FALSE;
|
||||||
|
|
||||||
dprintf(fd, " File: '%s'", unescape(fname, 0));
|
dprintf(fd, " File: '%s'", unescape(fname, 0));
|
||||||
|
|
||||||
|
@ -1966,7 +1967,7 @@ static int show_stats(char *fpath, char *fname, struct stat *sb)
|
||||||
get_output(NULL, 0, "cat", g_tmpfpath, NULL, TRUE);
|
get_output(NULL, 0, "cat", g_tmpfpath, NULL, TRUE);
|
||||||
unlink(g_tmpfpath);
|
unlink(g_tmpfpath);
|
||||||
refresh();
|
refresh();
|
||||||
return 0;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
static size_t get_fs_info(const char *path, bool type)
|
static size_t get_fs_info(const char *path, bool type)
|
||||||
|
@ -2339,13 +2340,13 @@ static int dentfind(struct entry *dents, const char *fname, int n)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int populate(char *path, char *lastname)
|
static bool populate(char *path, char *lastname)
|
||||||
{
|
{
|
||||||
/* Can fail when permissions change while browsing.
|
/* Can fail when permissions change while browsing.
|
||||||
* It's assumed that path IS a directory when we are here.
|
* It's assumed that path IS a directory when we are here.
|
||||||
*/
|
*/
|
||||||
if (access(path, R_OK) == -1)
|
if (access(path, R_OK) == -1)
|
||||||
return -1;
|
return FALSE;
|
||||||
|
|
||||||
if (cfg.blkorder) {
|
if (cfg.blkorder) {
|
||||||
printmsg("calculating...");
|
printmsg("calculating...");
|
||||||
|
@ -2360,7 +2361,7 @@ static int populate(char *path, char *lastname)
|
||||||
|
|
||||||
ndents = dentfill(path, &dents);
|
ndents = dentfill(path, &dents);
|
||||||
if (!ndents)
|
if (!ndents)
|
||||||
return 0;
|
return TRUE;
|
||||||
|
|
||||||
qsort(dents, ndents, sizeof(*dents), entrycmp);
|
qsort(dents, ndents, sizeof(*dents), entrycmp);
|
||||||
|
|
||||||
|
@ -2371,7 +2372,7 @@ static int populate(char *path, char *lastname)
|
||||||
|
|
||||||
/* Find cur from history */
|
/* Find cur from history */
|
||||||
cur = dentfind(dents, lastname, ndents);
|
cur = dentfind(dents, lastname, ndents);
|
||||||
return 0;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void redraw(char *path)
|
static void redraw(char *path)
|
||||||
|
@ -2584,7 +2585,7 @@ begin:
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (populate(path, lastname) == -1) {
|
if (!populate(path, lastname)) {
|
||||||
printwarn();
|
printwarn();
|
||||||
goto nochange;
|
goto nochange;
|
||||||
}
|
}
|
||||||
|
@ -2928,7 +2929,7 @@ nochange:
|
||||||
errexit();
|
errexit();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (show_stats(newpath, dents[cur].name, &sb) < 0) {
|
if (!show_stats(newpath, dents[cur].name, &sb)) {
|
||||||
printwarn();
|
printwarn();
|
||||||
goto nochange;
|
goto nochange;
|
||||||
}
|
}
|
||||||
|
@ -3517,7 +3518,7 @@ int main(int argc, char *argv[])
|
||||||
/* Confirm we are in a terminal */
|
/* Confirm we are in a terminal */
|
||||||
if (!isatty(0) || !isatty(1)) {
|
if (!isatty(0) || !isatty(1)) {
|
||||||
fprintf(stderr, "stdin or stdout is not a tty\n");
|
fprintf(stderr, "stdin or stdout is not a tty\n");
|
||||||
exit(1);
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
while ((opt = getopt(argc, argv, "Slib:Cep:vh")) != -1) {
|
while ((opt = getopt(argc, argv, "Slib:Cep:vh")) != -1) {
|
||||||
|
@ -3552,7 +3553,7 @@ int main(int argc, char *argv[])
|
||||||
copier = realpath(optarg, g_cppath);
|
copier = realpath(optarg, g_cppath);
|
||||||
if (!g_cppath[0]) {
|
if (!g_cppath[0]) {
|
||||||
fprintf(stderr, "%s\n", strerror(errno));
|
fprintf(stderr, "%s\n", strerror(errno));
|
||||||
exit(1);
|
return 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -3564,7 +3565,7 @@ int main(int argc, char *argv[])
|
||||||
return 0;
|
return 0;
|
||||||
default:
|
default:
|
||||||
usage();
|
usage();
|
||||||
exit(1);
|
return 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3576,7 +3577,7 @@ int main(int argc, char *argv[])
|
||||||
while (*copier && opt < CTX_MAX) {
|
while (*copier && opt < CTX_MAX) {
|
||||||
if (*copier < '0' || *copier > '7') {
|
if (*copier < '0' || *copier > '7') {
|
||||||
fprintf(stderr, "invalid color code\n");
|
fprintf(stderr, "invalid color code\n");
|
||||||
exit(1);
|
return 1;
|
||||||
} else
|
} else
|
||||||
g_ctx[opt].color = *copier - '0';
|
g_ctx[opt].color = *copier - '0';
|
||||||
|
|
||||||
|
@ -3594,15 +3595,15 @@ int main(int argc, char *argv[])
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Parse bookmarks string */
|
/* Parse bookmarks string */
|
||||||
if (parsebmstr() < 0) {
|
if (!parsebmstr()) {
|
||||||
fprintf(stderr, "NNN_BMS: single-char keys only\n");
|
fprintf(stderr, "NNN_BMS: single-char keys only\n");
|
||||||
exit(1);
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ipath) { /* Open a bookmark directly */
|
if (ipath) { /* Open a bookmark directly */
|
||||||
if (ipath[1] || get_bm_loc(*ipath, cwd) == NULL) {
|
if (ipath[1] || get_bm_loc(*ipath, cwd) == NULL) {
|
||||||
fprintf(stderr, "%s\n", messages[STR_INVBM_KEY]);
|
fprintf(stderr, "%s\n", messages[STR_INVBM_KEY]);
|
||||||
exit(1);
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
ipath = cwd;
|
ipath = cwd;
|
||||||
|
@ -3615,7 +3616,7 @@ int main(int argc, char *argv[])
|
||||||
ipath = realpath(argv[optind], cwd);
|
ipath = realpath(argv[optind], cwd);
|
||||||
if (!ipath) {
|
if (!ipath) {
|
||||||
fprintf(stderr, "%s: no such dir\n", argv[optind]);
|
fprintf(stderr, "%s: no such dir\n", argv[optind]);
|
||||||
exit(1);
|
return 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3646,13 +3647,13 @@ int main(int argc, char *argv[])
|
||||||
inotify_fd = inotify_init1(IN_NONBLOCK);
|
inotify_fd = inotify_init1(IN_NONBLOCK);
|
||||||
if (inotify_fd < 0) {
|
if (inotify_fd < 0) {
|
||||||
fprintf(stderr, "inotify init! %s\n", strerror(errno));
|
fprintf(stderr, "inotify init! %s\n", strerror(errno));
|
||||||
exit(1);
|
return 1;
|
||||||
}
|
}
|
||||||
#elif defined(BSD_KQUEUE)
|
#elif defined(BSD_KQUEUE)
|
||||||
kq = kqueue();
|
kq = kqueue();
|
||||||
if (kq < 0) {
|
if (kq < 0) {
|
||||||
fprintf(stderr, "kqueue init! %s\n", strerror(errno));
|
fprintf(stderr, "kqueue init! %s\n", strerror(errno));
|
||||||
exit(1);
|
return 1;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -3692,7 +3693,7 @@ int main(int argc, char *argv[])
|
||||||
/* Test initial path */
|
/* Test initial path */
|
||||||
if (!xdiraccess(ipath)) {
|
if (!xdiraccess(ipath)) {
|
||||||
fprintf(stderr, "%s: %s\n", ipath, strerror(errno));
|
fprintf(stderr, "%s: %s\n", ipath, strerror(errno));
|
||||||
exit(1);
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Set locale */
|
/* Set locale */
|
||||||
|
@ -3702,7 +3703,9 @@ int main(int argc, char *argv[])
|
||||||
#ifdef DEBUGMODE
|
#ifdef DEBUGMODE
|
||||||
enabledbg();
|
enabledbg();
|
||||||
#endif
|
#endif
|
||||||
initcurses();
|
if (!initcurses())
|
||||||
|
return 1;
|
||||||
|
|
||||||
browse(ipath);
|
browse(ipath);
|
||||||
exitcurses();
|
exitcurses();
|
||||||
|
|
||||||
|
@ -3732,5 +3735,5 @@ int main(int argc, char *argv[])
|
||||||
#ifdef DEBUGMODE
|
#ifdef DEBUGMODE
|
||||||
disabledbg();
|
disabledbg();
|
||||||
#endif
|
#endif
|
||||||
exit(0);
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue