1
1

Added inline function vfs_path_get_last_path_str()

...to simple get path string without malloc/free operations.

Signed-off-by: Slava Zanko <slavazanko@gmail.com>
Этот коммит содержится в:
Slava Zanko 2011-07-23 16:18:53 +03:00
родитель 389ac85992
Коммит 02f31f4db6

Просмотреть файл

@ -79,4 +79,16 @@ vfs_path_element_valid (const vfs_path_element_t * element)
return (element != NULL && element->class != NULL);
}
/* --------------------------------------------------------------------------------------------- */
static inline char *
vfs_path_get_last_path_str (const vfs_path_t * vpath)
{
const vfs_path_element_t *element;
if (vpath == NULL)
return NULL;
element = vfs_path_get_by_index (vpath, -1);
return (element != NULL) ? element->path : NULL;
}
#endif