String compare of filenames.
String compare of filenames.
Combine path and filename to form a filespec. Input: path Path, with or without trailing / (can be NULL) filename Cannot be NULL
Convert filespec into a backup filename appropriate for the operating system. For instance, under MS-DOS path\filename.ext will be converted to path\filename.bak. Input: filespec String that may or may not contain an extension
Add extension onto filespec, if one isn't already there. Input: filespec Cannot be NULL ext Extension (without the .)
Return string that is the dot and extension. The string returned is NOT mem_malloc'ed. Return pointer to the 0 at the end of filespec if dot isn't found. Return NULL if filespec is NULL.
Force extension onto filespec. Input: filespec String that may or may not contain an extension ext Extension that doesn't contain a .
Get root name of file name. That is, return a mem_strdup()'d version of the filename without the .ext.
Return string that is the filename plus dot and extension. The string returned is NOT mem_malloc'ed.
filespecrootpath ************************** Purpose: To expand a relative path into an absolute path.
String compare of filenames.
String compare of filenames.
String compare of filenames.