dect
/
libdect
Archived
13
0
Fork 0
This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
libdect/example/discover.c

20 lines
310 B
C

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <dect/libdect.h>
#include "common.h"
#include <lce.h>
static struct dect_ops ops;
int main(int argc, char **argv)
{
dect_common_init(&ops, argv[1]);
dect_lce_group_ring(dh, 0);
dect_event_loop();
dect_common_cleanup(dh);
return 0;
}