aboutsummaryrefslogtreecommitdiffhomepage
path: root/wildcard.c
diff options
context:
space:
mode:
Diffstat (limited to 'wildcard.c')
-rw-r--r--wildcard.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/wildcard.c b/wildcard.c
index ef2748c4..61fb13f0 100644
--- a/wildcard.c
+++ b/wildcard.c
@@ -303,7 +303,10 @@ static wchar_t *make_path( const wchar_t *base_dir, const wchar_t *name )
return long_name;
}
-void get_desc( wchar_t *fn, string_buffer_t *sb, int is_cmd )
+/**
+ Get the description of the specified filename. If this is a regular file, append the filesize to the description.
+*/
+static void get_desc( wchar_t *fn, string_buffer_t *sb, int is_cmd )
{
const wchar_t *desc;
@@ -376,7 +379,7 @@ void get_desc( wchar_t *fn, string_buffer_t *sb, int is_cmd )
}
}
-/*
+/**
Test if the file specified by the given filename matches the
expansion flags specified. flags can be a combination of
EXECUTABLES_ONLY and DIRECTORIES_ONLY.