blob: a4c6ec7dc429f372130913398eae621729a146ef (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
///////////////////////////////////////////////////////////////////////////////
//
/// \file list.h
/// \brief List information about .xz files
//
// Author: Lasse Collin
//
// This file has been put into the public domain.
// You can do whatever you want with this file.
//
///////////////////////////////////////////////////////////////////////////////
/// \brief List information about the given .xz file
extern void list_file(const char *filename);
/// \brief Show the totals after all files have been listed
extern void list_totals(void);
|