summaryrefslogtreecommitdiff
path: root/utils/file.c
Commit message (Collapse)AuthorAgeFilesLines
* rework path to url mapping functions to convert from and to nsurlVincent Sanders2014-05-261-7/+127
|
* we now ensure the operations table is set up early enough the null check is ↵Vincent Sanders2014-05-101-6/+1
| | | | not required
* fix silly errors in atari and amiga file operation table changeVincent Sanders2014-05-071-2/+2
|
* add file operations table and make all frontends use it.Vincent Sanders2014-05-071-0/+117
This rationalises the path construction and basename file operations. The default implementation is POSIX which works for all frontends except windows, riscos and amiga which have differeing path separators and rules. These implementations are significantly more robust than the previous nine implementations and also do not use unsafe strncpy or buffers with arbitrary length limits. These implementations also carry full documentation comments.