]> git.saurik.com Git - apt.git/blame - ftparchive/byhash.h
tests: use SHA1 checksum only by default in tests
[apt.git] / ftparchive / byhash.h
CommitLineData
7852873a
MV
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
3/* ######################################################################
4
5 ByHash
6
7 ByHash helper functions
8
9 ##################################################################### */
10 /*}}}*/
11#ifndef BYHASH_H
12#define BYHASH_H
13
14class HashString;
15
16// Delete all files in "dir" except for the number specified in "KeepFiles"
17// that are the most recent ones
18void DeleteAllButMostRecent(std::string dir, int KeepFiles);
19
20// takes a regular input filename
21std::string GenByHashFilename(std::string Input, HashString h);
22
23#endif