summaryrefslogtreecommitdiffstats
path: root/src/rucksack-test.c
blob: b18a991d99d21e17632e188986ffcdc8545b88af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * This file is part of MXE.
 * See index.html for further 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;
}