list.h revision 213700
1169695Skan///////////////////////////////////////////////////////////////////////////////
2169695Skan//
3169695Skan/// \file       list.h
4169695Skan/// \brief      List information about .xz files
5169695Skan//
6169695Skan//  Author:     Lasse Collin
7169695Skan//
8169695Skan//  This file has been put into the public domain.
9169695Skan//  You can do whatever you want with this file.
10169695Skan//
11169695Skan///////////////////////////////////////////////////////////////////////////////
12169695Skan
13169695Skan/// \brief      List information about the given .xz file
14169695Skanextern void list_file(const char *filename);
15169695Skan
16169695Skan
17169695Skan/// \brief      Show the totals after all files have been listed
18169695Skanextern void list_totals(void);
19169695Skan