Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVicent Marti <tanoku@gmail.com>2012-10-31 23:52:01 +0400
committerVicent Marti <tanoku@gmail.com>2012-10-31 23:52:01 +0400
commitc1f61af66b35533ee8268e615de6ded74b2ce342 (patch)
treeefb3a3c85de72687cbc8e47ce0783c3e61582027 /src/fileops.h
parentc8b511f3cdb3f7fa63600b36bb2412099998a805 (diff)
I LIKE THESE NAMES
Diffstat (limited to 'src/fileops.h')
-rw-r--r--src/fileops.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/fileops.h b/src/fileops.h
index ac0659d3f..25e62c504 100644
--- a/src/fileops.h
+++ b/src/fileops.h
@@ -277,7 +277,7 @@ typedef struct {
git_time_t mtime;
git_off_t size;
unsigned int ino;
-} git_futils_file_stamp;
+} git_futils_filestamp;
/**
* Compare stat information for file with reference info.
@@ -291,8 +291,8 @@ typedef struct {
* @param path Path to stat and check if changed
* @return 0 if up-to-date, 1 if out-of-date, <0 on error
*/
-extern int git_futils_file_stamp_has_changed(
- git_futils_file_stamp *stamp, const char *path);
+extern int git_futils_filestamp_check(
+ git_futils_filestamp *stamp, const char *path);
/**
* Set or reset file stamp data
@@ -304,7 +304,7 @@ extern int git_futils_file_stamp_has_changed(
* @param tgt File stamp to write to
* @param src File stamp to copy from or NULL to clear the target
*/
-extern void git_futils_file_stamp_set(
- git_futils_file_stamp *tgt, const git_futils_file_stamp *src);
+extern void git_futils_filestamp_set(
+ git_futils_filestamp *tgt, const git_futils_filestamp *src);
#endif /* INCLUDE_fileops_h__ */