MCPcopy Index your code
hub / github.com/git/git / fake_lstat_data

Function fake_lstat_data

statinfo.c:54–62  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

52}
53
54void fake_lstat_data(const struct stat_data *sd, struct stat *st)
55{
56 set_times(st, sd);
57 st->st_dev = sd->sd_dev;
58 st->st_ino = sd->sd_ino;
59 st->st_uid = sd->sd_uid;
60 st->st_gid = sd->sd_gid;
61 st->st_size = sd->sd_size;
62}
63
64int match_stat_data(const struct stat_data *sd, struct stat *st)
65{

Callers 1

fake_lstatFunction · 0.85

Calls 1

set_timesFunction · 0.85

Tested by

no test coverage detected