diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-03-30 17:27:52 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-03-30 17:27:52 -0400 |
| commit | 8cba6c3c24c2122c843aa0feaa26fd6e5c2412e2 (patch) | |
| tree | ae0583da790de2416f03a27e9f94953be7d4a803 /src/stdlib/paths.h | |
| parent | d853d7b8dc1586f6b2fad3bf05998bfbe935b8f3 (diff) | |
Deprecate built-in Moment datatype in favor of a `time` module
Diffstat (limited to 'src/stdlib/paths.h')
| -rw-r--r-- | src/stdlib/paths.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/stdlib/paths.h b/src/stdlib/paths.h index 02afc494..9be81bdf 100644 --- a/src/stdlib/paths.h +++ b/src/stdlib/paths.h @@ -28,9 +28,9 @@ bool Path$is_symlink(Path_t path); bool Path$can_read(Path_t path); bool Path$can_write(Path_t path); bool Path$can_execute(Path_t path); -OptionalMoment_t Path$modified(Path_t path, bool follow_symlinks); -OptionalMoment_t Path$accessed(Path_t path, bool follow_symlinks); -OptionalMoment_t Path$changed(Path_t path, bool follow_symlinks); +OptionalInt64_t Path$modified(Path_t path, bool follow_symlinks); +OptionalInt64_t Path$accessed(Path_t path, bool follow_symlinks); +OptionalInt64_t Path$changed(Path_t path, bool follow_symlinks); void Path$write(Path_t path, Text_t text, int permissions); void Path$write_bytes(Path_t path, Array_t bytes, int permissions); void Path$append(Path_t path, Text_t text, int permissions); |
