summaryrefslogtreecommitdiff
path: root/framebuffer/misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'framebuffer/misc.c')
-rw-r--r--framebuffer/misc.c37
1 files changed, 0 insertions, 37 deletions
diff --git a/framebuffer/misc.c b/framebuffer/misc.c
index 2dd03677d..f5ad045a0 100644
--- a/framebuffer/misc.c
+++ b/framebuffer/misc.c
@@ -37,40 +37,3 @@ void die(const char *error)
exit(1);
}
-/**
- * Return the filename part of a full path
- *
- * \param path full path and filename
- * \return filename (will be freed with free())
- */
-char *filename_from_path(char *path)
-{
- char *leafname;
-
- leafname = strrchr(path, '/');
- if (!leafname)
- leafname = path;
- else
- leafname += 1;
-
- return strdup(leafname);
-}
-
-/**
- * Add a path component/filename to an existing path
- *
- * \param path buffer containing path + free space
- * \param length length of buffer "path"
- * \param newpart string containing path component to add to path
- * \return true on success
- */
-
-bool path_add_part(char *path, int length, const char *newpart)
-{
- if(path[strlen(path) - 1] != '/')
- strncat(path, "/", length);
-
- strncat(path, newpart, length);
-
- return true;
-}