mirror of
https://github.com/jarun/nnn.git
synced 2024-11-16 08:03:16 +00:00
Reduce the scope of loop variables
This commit is contained in:
parent
e83e505659
commit
e72fa538d7
78
src/nnn.c
78
src/nnn.c
|
@ -757,16 +757,6 @@ static bool test_clear_bit(uint nr)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static void clear_hash()
|
|
||||||
{
|
|
||||||
ulong i = 0;
|
|
||||||
ull *addr = ihashbmp;
|
|
||||||
|
|
||||||
for (; i < HASH_OCTETS; ++i, ++addr)
|
|
||||||
if (*addr)
|
|
||||||
*addr = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void clearinfoln(void)
|
static void clearinfoln(void)
|
||||||
{
|
{
|
||||||
move(xlines - 2, 0);
|
move(xlines - 2, 0);
|
||||||
|
@ -1031,7 +1021,7 @@ static char *abspath(const char *path, const char *cwd)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
size_t dst_size = 0, src_size = strlen(path), cwd_size = strlen(cwd);
|
size_t dst_size = 0, src_size = strlen(path), cwd_size = strlen(cwd);
|
||||||
const char *src, *next;
|
const char *src;
|
||||||
char *dst;
|
char *dst;
|
||||||
char *resolved_path = malloc(src_size + (*path == '/' ? 0 : cwd_size) + 1);
|
char *resolved_path = malloc(src_size + (*path == '/' ? 0 : cwd_size) + 1);
|
||||||
if (!resolved_path)
|
if (!resolved_path)
|
||||||
|
@ -1045,7 +1035,7 @@ static char *abspath(const char *path, const char *cwd)
|
||||||
|
|
||||||
src = path;
|
src = path;
|
||||||
dst = resolved_path + dst_size;
|
dst = resolved_path + dst_size;
|
||||||
for (next = NULL; next != path + src_size;) {
|
for (const char *next = NULL; next != path + src_size;) {
|
||||||
next = strchr(src, '/');
|
next = strchr(src, '/');
|
||||||
if (!next)
|
if (!next)
|
||||||
next = path + src_size;
|
next = path + src_size;
|
||||||
|
@ -1195,9 +1185,7 @@ static bool listselfile(void)
|
||||||
/* Reset selection indicators */
|
/* Reset selection indicators */
|
||||||
static void resetselind(void)
|
static void resetselind(void)
|
||||||
{
|
{
|
||||||
int r = 0;
|
for (int r = 0; r < ndents; ++r)
|
||||||
|
|
||||||
for (; r < ndents; ++r)
|
|
||||||
if (dents[r].flags & FILE_SELECTED)
|
if (dents[r].flags & FILE_SELECTED)
|
||||||
dents[r].flags &= ~FILE_SELECTED;
|
dents[r].flags &= ~FILE_SELECTED;
|
||||||
}
|
}
|
||||||
|
@ -1220,10 +1208,9 @@ static void startselection(void)
|
||||||
|
|
||||||
static void updateselbuf(const char *path, char *newpath)
|
static void updateselbuf(const char *path, char *newpath)
|
||||||
{
|
{
|
||||||
int i = 0;
|
|
||||||
size_t r;
|
size_t r;
|
||||||
|
|
||||||
for (; i < ndents; ++i)
|
for (int i = 0; i < ndents; ++i)
|
||||||
if (dents[i].flags & FILE_SELECTED) {
|
if (dents[i].flags & FILE_SELECTED) {
|
||||||
r = mkpath(path, dents[i].name, newpath);
|
r = mkpath(path, dents[i].name, newpath);
|
||||||
appendfpath(newpath, r);
|
appendfpath(newpath, r);
|
||||||
|
@ -1434,14 +1421,14 @@ static void export_file_list(void)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
struct entry *pdent = dents;
|
struct entry *pdent = dents;
|
||||||
int r = 0, fd = create_tmp_file();
|
int fd = create_tmp_file();
|
||||||
|
|
||||||
if (fd == -1) {
|
if (fd == -1) {
|
||||||
DPRINTF_S(strerror(errno));
|
DPRINTF_S(strerror(errno));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (; r < ndents; ++pdent, ++r) {
|
for (int r = 0; r < ndents; ++pdent, ++r) {
|
||||||
if (write(fd, pdent->name, pdent->nlen - 1) != (pdent->nlen - 1))
|
if (write(fd, pdent->name, pdent->nlen - 1) != (pdent->nlen - 1))
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -1497,17 +1484,12 @@ static bool initcurses(void *oldmask)
|
||||||
char *colors = getenv(env_cfg[NNN_COLORS]);
|
char *colors = getenv(env_cfg[NNN_COLORS]);
|
||||||
|
|
||||||
if (colors || !getenv("NO_COLOR")) {
|
if (colors || !getenv("NO_COLOR")) {
|
||||||
short i;
|
|
||||||
|
|
||||||
if (!colors)
|
|
||||||
colors = "4444";
|
|
||||||
|
|
||||||
start_color();
|
start_color();
|
||||||
use_default_colors();
|
use_default_colors();
|
||||||
|
|
||||||
/* Get and set the context colors */
|
/* Get and set the context colors */
|
||||||
for (i = 0; i < CTX_MAX; ++i) {
|
for (uchar i = 0; i < CTX_MAX; ++i) {
|
||||||
if (*colors) {
|
if (colors && *colors) {
|
||||||
g_ctx[i].color = (*colors < '0' || *colors > '7') ? 4 : *colors - '0';
|
g_ctx[i].color = (*colors < '0' || *colors > '7') ? 4 : *colors - '0';
|
||||||
++colors;
|
++colors;
|
||||||
} else
|
} else
|
||||||
|
@ -1873,15 +1855,15 @@ static bool cpmvrm_selection(enum action sel, char *path)
|
||||||
#ifndef NOBATCH
|
#ifndef NOBATCH
|
||||||
static bool batch_rename(const char *path)
|
static bool batch_rename(const char *path)
|
||||||
{
|
{
|
||||||
int fd1, fd2, i;
|
int fd1, fd2;
|
||||||
uint count = 0, lines = 0;
|
uint count = 0, lines = 0;
|
||||||
bool dir = FALSE, ret = FALSE;
|
bool dir = FALSE, ret = FALSE;
|
||||||
char foriginal[TMP_LEN_MAX] = {0};
|
char foriginal[TMP_LEN_MAX] = {0};
|
||||||
static const char batchrenamecmd[] = "paste -d'\n' %s %s | sed 'N; /^\\(.*\\)\\n\\1$/!p;d' | "
|
static const char batchrenamecmd[] = "paste -d'\n' %s %s | sed 'N; /^\\(.*\\)\\n\\1$/!p;d' | "
|
||||||
"tr '\n' '\\0' | xargs -0 -n2 mv 2>/dev/null";
|
"tr '\n' '\\0' | xargs -0 -n2 mv 2>/dev/null";
|
||||||
char buf[sizeof(batchrenamecmd) + (PATH_MAX << 1)];
|
char buf[sizeof(batchrenamecmd) + (PATH_MAX << 1)];
|
||||||
|
int i = get_cur_or_sel();
|
||||||
|
|
||||||
i = get_cur_or_sel();
|
|
||||||
if (!i)
|
if (!i)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
@ -2305,9 +2287,7 @@ static int nextsel(int presel)
|
||||||
if (!cfg.selmode && !cfg.blkorder && inotify_wd >= 0 && (idle & 1)) {
|
if (!cfg.selmode && !cfg.blkorder && inotify_wd >= 0 && (idle & 1)) {
|
||||||
i = read(inotify_fd, inotify_buf, EVENT_BUF_LEN);
|
i = read(inotify_fd, inotify_buf, EVENT_BUF_LEN);
|
||||||
if (i > 0) {
|
if (i > 0) {
|
||||||
char *ptr;
|
for (char *ptr = inotify_buf;
|
||||||
|
|
||||||
for (ptr = inotify_buf;
|
|
||||||
ptr + ((struct inotify_event *)ptr)->len < inotify_buf + i;
|
ptr + ((struct inotify_event *)ptr)->len < inotify_buf + i;
|
||||||
ptr += sizeof(struct inotify_event) + event->len) {
|
ptr += sizeof(struct inotify_event) + event->len) {
|
||||||
event = (struct inotify_event *) ptr;
|
event = (struct inotify_event *) ptr;
|
||||||
|
@ -2412,14 +2392,13 @@ static int fill(const char *fltr, pcre *pcrex)
|
||||||
static int fill(const char *fltr, regex_t *re)
|
static int fill(const char *fltr, regex_t *re)
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
int count = 0;
|
|
||||||
#ifdef PCRE
|
#ifdef PCRE
|
||||||
fltrexp_t fltrexp = { .pcrex = pcrex, .str = fltr };
|
fltrexp_t fltrexp = { .pcrex = pcrex, .str = fltr };
|
||||||
#else
|
#else
|
||||||
fltrexp_t fltrexp = { .regex = re, .str = fltr };
|
fltrexp_t fltrexp = { .regex = re, .str = fltr };
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
for (; count < ndents; ++count) {
|
for (int count = 0; count < ndents; ++count) {
|
||||||
if (filterfn(&fltrexp, dents[count].name) == 0) {
|
if (filterfn(&fltrexp, dents[count].name) == 0) {
|
||||||
if (count != --ndents) {
|
if (count != --ndents) {
|
||||||
swap_ent(count, ndents);
|
swap_ent(count, ndents);
|
||||||
|
@ -3019,12 +2998,10 @@ static bool parsekvpair(kv **arr, char **envcpy, const uchar id, uchar *items)
|
||||||
*/
|
*/
|
||||||
static char *get_kv_val(kv *kvarr, char *buf, int key, uchar max, bool bookmark)
|
static char *get_kv_val(kv *kvarr, char *buf, int key, uchar max, bool bookmark)
|
||||||
{
|
{
|
||||||
int r = 0;
|
|
||||||
|
|
||||||
if (!kvarr)
|
if (!kvarr)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
for (; kvarr[r].key && r < max; ++r) {
|
for (int r = 0; kvarr[r].key && r < max; ++r) {
|
||||||
if (kvarr[r].key == key) {
|
if (kvarr[r].key == key) {
|
||||||
/* Do not allocate new memory for plugin */
|
/* Do not allocate new memory for plugin */
|
||||||
if (!bookmark)
|
if (!bookmark)
|
||||||
|
@ -4015,9 +3992,7 @@ static void lock_terminal(void)
|
||||||
|
|
||||||
static void printkv(kv *kvarr, FILE *fp, uchar max)
|
static void printkv(kv *kvarr, FILE *fp, uchar max)
|
||||||
{
|
{
|
||||||
uchar i = 0;
|
for (uchar i = 0; i < max && kvarr[i].key; ++i)
|
||||||
|
|
||||||
for (; i < max && kvarr[i].key; ++i)
|
|
||||||
fprintf(fp, " %c: %s\n", (char)kvarr[i].key, kvarr[i].val);
|
fprintf(fp, " %c: %s\n", (char)kvarr[i].key, kvarr[i].val);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4070,7 +4045,7 @@ static size_t handle_bookmark(const char *mark, char *newpath)
|
||||||
*/
|
*/
|
||||||
static void show_help(const char *path)
|
static void show_help(const char *path)
|
||||||
{
|
{
|
||||||
int i, fd;
|
int fd;
|
||||||
FILE *fp;
|
FILE *fp;
|
||||||
const char *start, *end;
|
const char *start, *end;
|
||||||
const char helpstr[] = {
|
const char helpstr[] = {
|
||||||
|
@ -4147,7 +4122,7 @@ static void show_help(const char *path)
|
||||||
fprintf(fp, "\n");
|
fprintf(fp, "\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
for (i = NNN_OPENER; i <= NNN_TRASH; ++i) {
|
for (uchar i = NNN_OPENER; i <= NNN_TRASH; ++i) {
|
||||||
start = getenv(env_cfg[i]);
|
start = getenv(env_cfg[i]);
|
||||||
if (start)
|
if (start)
|
||||||
fprintf(fp, "%s: %s\n", env_cfg[i], start);
|
fprintf(fp, "%s: %s\n", env_cfg[i], start);
|
||||||
|
@ -4351,7 +4326,7 @@ static bool selforparent(const char *path)
|
||||||
|
|
||||||
static int dentfill(char *path, struct entry **dents)
|
static int dentfill(char *path, struct entry **dents)
|
||||||
{
|
{
|
||||||
int n = 0, count, flags = 0;
|
int n = 0, flags = 0;
|
||||||
ulong num_saved;
|
ulong num_saved;
|
||||||
struct dirent *dp;
|
struct dirent *dp;
|
||||||
char *namep, *pnb, *buf = NULL;
|
char *namep, *pnb, *buf = NULL;
|
||||||
|
@ -4382,7 +4357,7 @@ static int dentfill(char *path, struct entry **dents)
|
||||||
if (!ihashbmp)
|
if (!ihashbmp)
|
||||||
goto exit;
|
goto exit;
|
||||||
} else
|
} else
|
||||||
clear_hash();
|
memset(ihashbmp, 0, HASH_OCTETS << 3);
|
||||||
|
|
||||||
attron(COLOR_PAIR(cfg.curctx + 1));
|
attron(COLOR_PAIR(cfg.curctx + 1));
|
||||||
}
|
}
|
||||||
|
@ -4483,7 +4458,7 @@ static int dentfill(char *path, struct entry **dents)
|
||||||
dentp = *dents;
|
dentp = *dents;
|
||||||
dentp->name = pnamebuf;
|
dentp->name = pnamebuf;
|
||||||
|
|
||||||
for (count = 1; count < n; ++dentp, ++count)
|
for (int count = 1; count < n; ++dentp, ++count)
|
||||||
/* Current filename starts at last filename start + length */
|
/* Current filename starts at last filename start + length */
|
||||||
(dentp + 1)->name = (char *)((size_t)dentp->name + dentp->nlen);
|
(dentp + 1)->name = (char *)((size_t)dentp->name + dentp->nlen);
|
||||||
}
|
}
|
||||||
|
@ -4574,9 +4549,7 @@ exit:
|
||||||
*/
|
*/
|
||||||
static int dentfind(const char *fname, int n)
|
static int dentfind(const char *fname, int n)
|
||||||
{
|
{
|
||||||
int i = 0;
|
for (int i = 0; i < n; ++i)
|
||||||
|
|
||||||
for (; i < n; ++i)
|
|
||||||
if (xstrcmp(fname, dents[i].name) == 0)
|
if (xstrcmp(fname, dents[i].name) == 0)
|
||||||
return i;
|
return i;
|
||||||
|
|
||||||
|
@ -4677,9 +4650,7 @@ static void handle_screen_move(enum action sel)
|
||||||
break;
|
break;
|
||||||
default: /* case SEL_FIRST */
|
default: /* case SEL_FIRST */
|
||||||
{
|
{
|
||||||
int r = 0;
|
for (int r = 0; r < ndents; ++r) {
|
||||||
|
|
||||||
for (; r < ndents; ++r) {
|
|
||||||
if (!(dents[r].flags & DIR_OR_LINK_TO_DIR)) {
|
if (!(dents[r].flags & DIR_OR_LINK_TO_DIR)) {
|
||||||
move_cursor((r) % ndents, 0);
|
move_cursor((r) % ndents, 0);
|
||||||
break;
|
break;
|
||||||
|
@ -6322,7 +6293,7 @@ static char *make_tmp_tree(char **paths, ssize_t entries, const char *prefix)
|
||||||
int err, ignore = 0;
|
int err, ignore = 0;
|
||||||
struct stat sb;
|
struct stat sb;
|
||||||
char *slash, *tmp;
|
char *slash, *tmp;
|
||||||
ssize_t i, len = strlen(prefix);
|
ssize_t len = strlen(prefix);
|
||||||
char *tmpdir = malloc(sizeof(char) * (PATH_MAX + TMP_LEN_MAX));
|
char *tmpdir = malloc(sizeof(char) * (PATH_MAX + TMP_LEN_MAX));
|
||||||
|
|
||||||
if (!tmpdir) {
|
if (!tmpdir) {
|
||||||
|
@ -6346,7 +6317,7 @@ static char *make_tmp_tree(char **paths, ssize_t entries, const char *prefix)
|
||||||
|
|
||||||
listpath = tmpdir;
|
listpath = tmpdir;
|
||||||
|
|
||||||
for (i = 0; i < entries; ++i) {
|
for (ssize_t i = 0; i < entries; ++i) {
|
||||||
if (!paths[i])
|
if (!paths[i])
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
@ -6534,10 +6505,9 @@ malloc_1:
|
||||||
static void check_key_collision(void)
|
static void check_key_collision(void)
|
||||||
{
|
{
|
||||||
int key;
|
int key;
|
||||||
ulong i = 0;
|
|
||||||
bool bitmap[KEY_MAX] = {FALSE};
|
bool bitmap[KEY_MAX] = {FALSE};
|
||||||
|
|
||||||
for (; i < sizeof(bindings) / sizeof(struct key); ++i) {
|
for (ulong i = 0; i < sizeof(bindings) / sizeof(struct key); ++i) {
|
||||||
key = bindings[i].sym;
|
key = bindings[i].sym;
|
||||||
|
|
||||||
if (bitmap[key])
|
if (bitmap[key])
|
||||||
|
|
Loading…
Reference in a new issue