This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
2017-03-18 23:04:38 +10:00

58 lines
749 B
C

#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <shared/types.h>
#include <shared/mystrncpy.h>
#include <oslib/os.h>
void MakeFullPath(char *path,char *file,char *dest,uint32_t destsize)
{
int d;
char *chr;
chr=OS_PATH_CHARS;
mystrncpy(dest,path,destsize);
d=strlen(dest);
if(d != 0)
{
if(!strchr(chr,dest[d-1]))
if(d+1 < destsize)
{
dest[d++]=(char)chr[0];
dest[d]=0;
}
}
if(destsize-d-1 > 0)
mystrncpy(&dest[d],file,destsize-d-1);
}
char *GetFilePart(char *str)
{
int d;
char *chr,*ret;
chr=OS_PATH_CHARS;
ret=str;
for(d=0;str[d];d++)
if(strchr(chr,str[d])) ret = &str[d+1];
return(ret);
}