]> git.wh0rd.org Git - nano.git/commitdiff
reorder functions
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Sat, 5 Nov 2005 20:04:16 +0000 (20:04 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Sat, 5 Nov 2005 20:04:16 +0000 (20:04 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3095 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/browser.c
src/proto.h

index 32cffa54490a646eb550a801d5ff38d2b668ac13..0fce1a59705085f37d031b09542e68e87b14c5bf 100644 (file)
 
 #ifndef DISABLE_BROWSER
 
-/* Strip one directory from the end of path. */
-void striponedir(char *path)
-{
-    char *tmp;
-
-    assert(path != NULL);
-
-    tmp = strrchr(path, '/');
-
-    if (tmp != NULL)
-       *tmp = '\0';
-}
-
-/* Return a list of files contained in the directory path.  *longest is
- * the maximum display length of a file, up to COLS - 1 (but at least
- * 7).  *numents is the number of files.  We assume path exists and is a
- * directory.  If neither is true, we return NULL. */
-char **browser_init(const char *path, int *longest, size_t *numents, DIR
-       *dir)
-{
-    const struct dirent *nextdir;
-    char **filelist;
-    size_t i = 0, path_len;
-
-    assert(dir != NULL);
-
-    *longest = 0;
-
-    while ((nextdir = readdir(dir)) != NULL) {
-       size_t dlen;
-
-       /* Don't show the "." entry. */
-       if (strcmp(nextdir->d_name, ".") == 0)
-          continue;
-       i++;
-
-       dlen = strlenpt(nextdir->d_name);
-       if (dlen > *longest)
-           *longest = (dlen > COLS - 1) ? COLS - 1 : dlen;
-    }
-
-    *numents = i;
-    rewinddir(dir);
-    *longest += 10;
-
-    filelist = (char **)nmalloc(*numents * sizeof(char *));
-
-    path_len = strlen(path);
-
-    i = 0;
-
-    while ((nextdir = readdir(dir)) != NULL && i < *numents) {
-       /* Don't show the "." entry. */
-       if (strcmp(nextdir->d_name, ".") == 0)
-          continue;
-
-       filelist[i] = charalloc(path_len + strlen(nextdir->d_name) + 1);
-       sprintf(filelist[i], "%s%s", path, nextdir->d_name);
-       i++;
-    }
-
-    /* Maybe the number of files in the directory changed between the
-     * first time we scanned and the second.  i is the actual length of
-     * filelist, so record it. */
-    *numents = i;
-    closedir(dir);
-
-    if (*longest > COLS - 1)
-       *longest = COLS - 1;
-    if (*longest < 7)
-       *longest = 7;
-
-    return filelist;
-}
-
 /* Our browser function.  path is the path to start browsing from.
  * Assume path has already been tilde-expanded. */
 char *do_browser(char *path, DIR *dir)
@@ -482,6 +407,68 @@ char *do_browser(char *path, DIR *dir)
     return retval;
 }
 
+/* Return a list of files contained in the directory path.  *longest is
+ * the maximum display length of a file, up to COLS - 1 (but at least
+ * 7).  *numents is the number of files.  We assume path exists and is a
+ * directory.  If neither is true, we return NULL. */
+char **browser_init(const char *path, int *longest, size_t *numents, DIR
+       *dir)
+{
+    const struct dirent *nextdir;
+    char **filelist;
+    size_t i = 0, path_len;
+
+    assert(dir != NULL);
+
+    *longest = 0;
+
+    while ((nextdir = readdir(dir)) != NULL) {
+       size_t dlen;
+
+       /* Don't show the "." entry. */
+       if (strcmp(nextdir->d_name, ".") == 0)
+          continue;
+       i++;
+
+       dlen = strlenpt(nextdir->d_name);
+       if (dlen > *longest)
+           *longest = (dlen > COLS - 1) ? COLS - 1 : dlen;
+    }
+
+    *numents = i;
+    rewinddir(dir);
+    *longest += 10;
+
+    filelist = (char **)nmalloc(*numents * sizeof(char *));
+
+    path_len = strlen(path);
+
+    i = 0;
+
+    while ((nextdir = readdir(dir)) != NULL && i < *numents) {
+       /* Don't show the "." entry. */
+       if (strcmp(nextdir->d_name, ".") == 0)
+          continue;
+
+       filelist[i] = charalloc(path_len + strlen(nextdir->d_name) + 1);
+       sprintf(filelist[i], "%s%s", path, nextdir->d_name);
+       i++;
+    }
+
+    /* Maybe the number of files in the directory changed between the
+     * first time we scanned and the second.  i is the actual length of
+     * filelist, so record it. */
+    *numents = i;
+    closedir(dir);
+
+    if (*longest > COLS - 1)
+       *longest = COLS - 1;
+    if (*longest < 7)
+       *longest = 7;
+
+    return filelist;
+}
+
 /* The file browser front end.  We check to see if inpath has a dir in
  * it.  If it does, we start do_browser() from there.  Otherwise, we
  * start do_browser() from the current directory. */
@@ -537,4 +524,17 @@ char *do_browse_from(const char *inpath)
     return do_browser(path, dir);
 }
 
+/* Strip one directory from the end of path. */
+void striponedir(char *path)
+{
+    char *tmp;
+
+    assert(path != NULL);
+
+    tmp = strrchr(path, '/');
+
+    if (tmp != NULL)
+       *tmp = '\0';
+}
+
 #endif /* !DISABLE_BROWSER */
index 404845645059aa9f0638f3637e827f802c3612cf..dcd75af3cd78c80cd251fd8ba4ad8fd97f949f6c 100644 (file)
@@ -203,11 +203,11 @@ bool is_valid_mbstring(const char *s);
 
 /* Public functions in browser.c. */
 #ifndef DISABLE_BROWSER
-void striponedir(char *path);
+char *do_browser(char *path, DIR *dir);
 char **browser_init(const char *path, int *longest, size_t *numents, DIR
        *dir);
-char *do_browser(char *path, DIR *dir);
 char *do_browse_from(const char *inpath);
+void striponedir(char *path);
 #endif
 
 /* Public functions in color.c. */