aboutsummaryrefslogtreecommitdiff
path: root/stdlib/paths.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-11-17 14:49:03 -0500
committerBruce Hill <bruce@bruce-hill.com>2024-11-17 14:49:03 -0500
commit4231789b71bb42c4ab04e125f98fe5eb3cf030b6 (patch)
treec73aafaeef60b77555cfd25ccd30c618e431d52a /stdlib/paths.h
parentc1ae79ac3c320923363994fb88f4cc2fa13317ce (diff)
Rename datetime -> moment
Diffstat (limited to 'stdlib/paths.h')
-rw-r--r--stdlib/paths.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/paths.h b/stdlib/paths.h
index 989e5d84..bc263957 100644
--- a/stdlib/paths.h
+++ b/stdlib/paths.h
@@ -27,9 +27,9 @@ bool Path$is_directory(Path_t path, bool follow_symlinks);
bool Path$is_pipe(Path_t path, bool follow_symlinks);
bool Path$is_socket(Path_t path, bool follow_symlinks);
bool Path$is_symlink(Path_t path);
-OptionalDateTime_t Path$modified(Path_t path, bool follow_symlinks);
-OptionalDateTime_t Path$accessed(Path_t path, bool follow_symlinks);
-OptionalDateTime_t Path$changed(Path_t path, bool follow_symlinks);
+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);
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);