aboutsummaryrefslogtreecommitdiffstats
path: root/noice.c
diff options
context:
space:
mode:
authorsin <sin@2f30.org>2016-02-10 15:38:22 +0000
committersin <sin@2f30.org>2016-02-10 15:38:22 +0000
commitafc065206727ac56ec781becb20ecb573c15c625 (patch)
tree43e2bb894275a8b57b1549829da6bda25712561a /noice.c
parent5629b4911354876c9b88fe668bd4b17382c79f75 (diff)
downloadnoice-afc065206727ac56ec781becb20ecb573c15c625.tar.gz
Move mkpath() higher up so we don't need to declare it
Diffstat (limited to 'noice.c')
-rw-r--r--noice.c41
1 files changed, 20 insertions, 21 deletions
diff --git a/noice.c b/noice.c
index 7f2f873..4d032d3 100644
--- a/noice.c
+++ b/noice.c
@@ -103,7 +103,6 @@ int idle;
void printmsg(char *);
void printwarn(void);
void printerr(int, char *);
-char *mkpath(char *, char *, char *, size_t);
#undef dprintf
int
@@ -361,6 +360,26 @@ canopendir(char *path)
return 1;
}
+char *
+mkpath(char *dir, char *name, char *out, size_t n)
+{
+ /* Handle absolute path */
+ if (name[0] == '/') {
+ strlcpy(out, name, n);
+ } else {
+ /* Handle root case */
+ if (strcmp(dir, "/") == 0) {
+ strlcpy(out, "/", n);
+ strlcat(out, name, n);
+ } else {
+ strlcpy(out, dir, n);
+ strlcat(out, "/", n);
+ strlcat(out, name, n);
+ }
+ }
+ return out;
+}
+
void
printent(struct entry *ent, int active)
{
@@ -444,26 +463,6 @@ dentfree(struct entry *dents)
free(dents);
}
-char *
-mkpath(char *dir, char *name, char *out, size_t n)
-{
- /* Handle absolute path */
- if (name[0] == '/') {
- strlcpy(out, name, n);
- } else {
- /* Handle root case */
- if (strcmp(dir, "/") == 0) {
- strlcpy(out, "/", n);
- strlcat(out, name, n);
- } else {
- strlcpy(out, dir, n);
- strlcat(out, "/", n);
- strlcat(out, name, n);
- }
- }
- return out;
-}
-
/* Return the position of the matching entry or 0 otherwise */
int
dentfind(struct entry *dents, int n, char *cwd, char *path)
Un proyecto texto-plano.xyz