| 300 | } |
| 301 | |
| 302 | static void write_mtimes_header(const struct git_hash_algo *hash_algo, |
| 303 | struct hashfile *f) |
| 304 | { |
| 305 | hashwrite_be32(f, MTIMES_SIGNATURE); |
| 306 | hashwrite_be32(f, MTIMES_VERSION); |
| 307 | hashwrite_be32(f, oid_version(hash_algo)); |
| 308 | } |
| 309 | |
| 310 | /* |
| 311 | * Writes the object mtimes of "objects" for use in a .mtimes file. |
no test coverage detected