| 58 | } |
| 59 | |
| 60 | char *currentdir(char **err) { |
| 61 | return wrap(err, []{ |
| 62 | return strndup(CurrentPath().string()); |
| 63 | }); |
| 64 | } |
| 65 | |
| 66 | bool mkdir(const char *dir, char **err) { |
| 67 | return setter(dir, err, &CreateDirectory); |
nothing calls this directly
no test coverage detected