summaryrefslogtreecommitdiffstats
path: root/src/rucksack-test.c
blob: 6d11a8748dc545001caef95490682505c14e6cdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * This file is part of MXE. See LICENSE.md for licensing information.
 */

#include <rucksack/rucksack.h>

int main(int argc, char * argv[]) {
    (void)argc;
    struct RuckSackBundle *bundle;
    rucksack_bundle_open(argv[1], &bundle);
    rucksack_bundle_close(bundle);
    return 0;
}