mirror of
https://github.com/sheumann/hush.git
synced 2024-11-10 09:05:29 +00:00
8 lines
131 B
C
8 lines
131 B
C
|
#include <stdio.h>
|
||
|
#include "unarchive.h"
|
||
|
|
||
|
extern void header_list(const file_header_t *file_header)
|
||
|
{
|
||
|
puts(file_header->name);
|
||
|
}
|