first_element     275 lib/util.h     char *mc_build_filename (const char *first_element, ...);
first_element     276 lib/util.h     char *mc_build_filenamev (const char *first_element, va_list args);
first_element    1280 lib/utilunix.c mc_build_filenamev (const char *first_element, va_list args)
first_element    1283 lib/utilunix.c     const char *element = first_element;
first_element    1287 lib/utilunix.c     if (first_element == NULL)
first_element    1290 lib/utilunix.c     absolute = IS_PATH_SEP (*first_element);
first_element    1332 lib/utilunix.c mc_build_filename (const char *first_element, ...)
first_element    1337 lib/utilunix.c     if (first_element == NULL)
first_element    1340 lib/utilunix.c     va_start (args, first_element);
first_element    1341 lib/utilunix.c     ret = mc_build_filenamev (first_element, args);
first_element    1230 lib/vfs/path.c vfs_path_build_filename (const char *first_element, ...)
first_element    1236 lib/vfs/path.c     if (first_element == NULL)
first_element    1239 lib/vfs/path.c     va_start (args, first_element);
first_element    1240 lib/vfs/path.c     str_path = mc_build_filenamev (first_element, args);
first_element    1259 lib/vfs/path.c vfs_path_append_new (const vfs_path_t *vpath, const char *first_element, ...)
first_element    1266 lib/vfs/path.c     if (vpath == NULL || first_element == NULL)
first_element    1269 lib/vfs/path.c     va_start (args, first_element);
first_element    1270 lib/vfs/path.c     str_path = mc_build_filenamev (first_element, args);
first_element      66 lib/vfs/path.h vfs_path_t *vfs_path_build_filename (const char *first_element, ...);
first_element      67 lib/vfs/path.h vfs_path_t *vfs_path_append_new (const vfs_path_t *vpath, const char *first_element, ...);