list.h revision 207842
1217309Snwhitehorn///////////////////////////////////////////////////////////////////////////////
2217309Snwhitehorn//
3217309Snwhitehorn/// \file       list.h
4217309Snwhitehorn/// \brief      List information about .xz files
5217309Snwhitehorn//
6217309Snwhitehorn//  Author:     Lasse Collin
7217309Snwhitehorn//
8217309Snwhitehorn//  This file has been put into the public domain.
9217309Snwhitehorn//  You can do whatever you want with this file.
10217309Snwhitehorn//
11217309Snwhitehorn///////////////////////////////////////////////////////////////////////////////
12217309Snwhitehorn
13217309Snwhitehorn/// \brief      List information about the given .xz file
14217309Snwhitehornextern void list_file(const char *filename);
15217309Snwhitehorn
16217309Snwhitehorn
17217309Snwhitehorn/// \brief      Show the totals after all files have been listed
18217309Snwhitehornextern void list_totals(void);
19217309Snwhitehorn