mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
0bc9eab243
This is a bit rough but should be useful for basic things. Ideas (with detailed examples) about the output format are welcome. The output of --robot --list is not necessarily stable yet, although I don't currently have any plans about changing it. The man page hasn't been updated yet.
18 lines
575 B
C
18 lines
575 B
C
///////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
/// \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);
|