-
Notifications
You must be signed in to change notification settings - Fork 14.9k
Open
Labels
Description
Described in POSIX: https://pubs.opengroup.org/onlinepubs/9799919799/functions/realpath.html#
The realpath function resolves a path so that it doesn't have any /./
or /../
in it. It may also allocate a string of none is provided, similar to strdup
.
Here's a checklist for what you'll need to do for this:
- Add the implementation of
realpath
in/src/stdlib
- Add tests for
realpath
in/test/src/stdlib
- Add
realpath
toentrypoints.txt
for at least x86_64 and whatever you're building on - Add
realpath
toinclude/stdlib.yaml
(Reserved for specific assignee)