summaryrefslogtreecommitdiff
path: root/link_test.c
blob: 40d2c6d2983c8bbb45fce3bd35745d6a2838903a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 *
 */
#include <stdio.h>
#include "vcard.h"

VCardStatus cac_card_init(const char *flags, VCard *card,
                const unsigned char *cert[],
                int cert_len[], VCardKey *key[] /* adopt the keys*/,
                int cert_count);
/*
 * this will crash... just test the linkage right now
 */

main(int argc, char **argv)
{
    VCard *card; /* no constructor yet */
    cac_card_init("", card, NULL, 0, NULL, 0);
}