aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-02-26 23:15:01 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2019-02-28 22:36:52 +0530
commitaf8c52b026115940fc25fcdeaf4a314b2ed9f645 (patch)
tree12b6a9db30e1f2aaeb02e9228a8f7397d7228d72
parenteeb4b933b0c8fa6e41675410b17a44faa36b8c14 (diff)
downloadnnn-af8c52b026115940fc25fcdeaf4a314b2ed9f645.tar.gz
Code refatoring
-rw-r--r--src/nnn.c20
1 files changed, 13 insertions, 7 deletions
diff --git a/src/nnn.c b/src/nnn.c
index b205126..20f8cb3 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -1420,23 +1420,29 @@ static int nextsel(int *presel)
return 0;
}
+static inline void swap_ent(int id1, int id2)
+{
+ static struct entry _dent, *pdent1, *pdent2;;
+
+ pdent1 = &dents[id1];
+ pdent2 = &dents[id2];
+
+ *(&_dent) = *pdent1;
+ *pdent1 = *pdent2;
+ *pdent2 = *(&_dent);
+}
+
/*
* Move non-matching entries to the end
*/
static int fill(char *fltr, regex_t *re)
{
static int count;
- static struct entry _dent, *pdent1, *pdent2;
for (count = 0; count < ndents; ++count) {
if (filterfn(re, dents[count].name, fltr) == 0) {
if (count != --ndents) {
- pdent1 = &dents[count];
- pdent2 = &dents[ndents];
-
- *(&_dent) = *pdent1;
- *pdent1 = *pdent2;
- *pdent2 = *(&_dent);
+ swap_ent(count, ndents);
--count;
}