appendPath - multiple declarations

Function appendPath

Appends file path parts with proper delimiters e.g. appendPath("/home/user", ".myapp", "config") => "/home/user/.myapp/config"

string appendPath (
  string[] pathItems...
);

Function appendPath

Appends file path parts with proper delimiters (as well converts delimiters inside path to system) to buffer e.g. appendPath("/home/user", ".myapp", "config") => "/home/user/.myapp/config"

char[] appendPath (
  char[] buf,
  string[] pathItems...
);