change: prefix function names with change_
Dependencies
- [2]
RIWSVVASchange: decompress the 'contents' with zstd_seekable - [3]
Q7TKZCJPAdd initial support for reading the offsets from a (fixed) change - [4]
QEFCNNVCchange: display offsets for given change file - [5]
AEMTSEJXchange: simplify readout of offsets
Change contents
- replacement in change.c at line 14
decode_offsets(int fd, struct offsets *off)change_decode_offsets(int fd, struct offsets *off) - replacement in change.c at line 70
read_contents(int fd, struct offsets *off)change_read_contents(int fd, struct offsets *off) - edit in change.c at line 129
/** Success! decompressed all that we wanted */dump_buf("contents", buf, off->contents_len); - replacement in change.c at line 175
err = decode_offsets(fd, &off);err = change_decode_offsets(fd, &off); - replacement in change.c at line 192
contents = read_contents(fd, &off);contents = change_read_contents(fd, &off);dump_buf("contents", contents, off.contents_len);free(contents);