dddvb/lib/dddvb_test.c

12 lines
190 B
C
Raw Normal View History

2018-09-17 13:45:26 +02:00
#include "src/libdddvb.h"
#include <stdio.h>
int main()
{
struct dddvb *dd = dddvb_init("", 0xffff);
if (!dd)
printf("dddvb_init failed\n");
printf("dvbnum = %u\n", dd->dvbfe_num);
}