Skip to content

Instantly share code, notes, and snippets.

@nu7hatch
Created May 11, 2011 16:18
Show Gist options
  • Save nu7hatch/966786 to your computer and use it in GitHub Desktop.
Save nu7hatch/966786 to your computer and use it in GitHub Desktop.
...
chdir(P_tmpdir);
char path[MAXPATHLEN];
getcwd(path, MAXPATHLEN);
printf("%s\n", path); // => /private/var/tmp
printf("%s\n", P_tmpdir); // => /var/tmp
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment