diff options
author | romkatv <roman.perepelitsa@gmail.com> | 2020-05-10 16:58:05 +0300 |
---|---|---|
committer | romkatv <roman.perepelitsa@gmail.com> | 2020-05-10 16:58:05 +0300 |
commit | 97fac973afa021ae3ef49e0feae203fd09b231e1 (patch) | |
tree | 5c1ba4f09905cc53fdfc75d3668a876d3e14a447 /gitstatus/src/stat.h | |
parent | c159f3aaefe13724421655d06df990b2ddf23e59 (diff) | |
parent | 1531d6e5439daae01627b2645684876b75eaf5eb (diff) |
Merge commit '1531d6e5439daae01627b2645684876b75eaf5eb' as 'gitstatus'
Diffstat (limited to 'gitstatus/src/stat.h')
-rw-r--r-- | gitstatus/src/stat.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gitstatus/src/stat.h b/gitstatus/src/stat.h new file mode 100644 index 00000000..4f3195a7 --- /dev/null +++ b/gitstatus/src/stat.h @@ -0,0 +1,23 @@ +#ifndef ROMKATV_GITSTATUS_STAT_H_ +#define ROMKATV_GITSTATUS_STAT_H_ + +#include <sys/stat.h> + +namespace gitstatus { + +inline const struct timespec& MTim(const struct stat& s) { +#ifdef __APPLE__ + return s.st_mtimespec; +#else + return s.st_mtim; +#endif +} + +inline bool StatEq(const struct stat& x, const struct stat& y) { + return MTim(x).tv_sec == MTim(y).tv_sec && MTim(x).tv_nsec == MTim(y).tv_nsec && + x.st_size == y.st_size && x.st_ino == y.st_ino && x.st_mode == y.st_mode; +} + +} // namespace gitstatus + +#endif // ROMKATV_GITSTATUS_STAT_H_ |