mirror of
https://github.com/sheumann/hush.git
synced 2024-12-25 18:33:06 +00:00
9 lines
149 B
C
9 lines
149 B
C
/* vi: set sw=4 ts=4: */
|
|
#include <stdio.h>
|
|
#include "unarchive.h"
|
|
|
|
void header_list(const file_header_t *file_header)
|
|
{
|
|
puts(file_header->name);
|
|
}
|