Merge remote-tracking branch 'upstream/master' into version/4.1

This commit is contained in:
Jasmine Iwanek
2023-08-18 15:27:23 -04:00
49 changed files with 4333 additions and 987 deletions

View File

@@ -310,6 +310,17 @@ path_slash(char *path)
path_normalize(path);
}
char *
path_get_slash(char *path)
{
char *ret = "";
if (path[strlen(path) - 1] != '/')
ret = "/";
return ret;
}
void
plat_put_backslash(char *s)
{