summaryrefslogtreecommitdiff
path: root/amiga/misc.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-01-16 00:01:25 +0000
committerVincent Sanders <vince@kyllikki.org>2014-01-16 00:01:25 +0000
commit38cb39339a8f1f9a0afb69340a404fd767db5a79 (patch)
tree0b5ed63f639e8d8e66011a425ee595545b74300d /amiga/misc.c
parentbd065d4a434755e67642a071e255cba596de8d1e (diff)
downloadnetsurf-38cb39339a8f1f9a0afb69340a404fd767db5a79.tar.gz
netsurf-38cb39339a8f1f9a0afb69340a404fd767db5a79.tar.bz2
move filename_from_path and path_add_part into gui operation tables
Diffstat (limited to 'amiga/misc.c')
-rwxr-xr-xamiga/misc.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/amiga/misc.c b/amiga/misc.c
index 003a5fb6e..ac9d2453e 100755
--- a/amiga/misc.c
+++ b/amiga/misc.c
@@ -173,33 +173,6 @@ char *path_to_url(const char *path)
}
/**
- * 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)
-{
- return strdup(FilePart(path));
-}
-
-/**
- * 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(AddPart(path, newpart, length)) return true;
- else return false;
-}
-
-/**
* returns a string with escape chars translated.
* (based on remove_underscores from utils.c)
*/