blob: a1689ef9fffe446774efebaff7694d9389447de8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <stdio.h>
#include "uca.h"
int main(int argc, char *argv[])
{
struct uca_t *uca = uca_init();
if (uca == NULL) {
printf("Couldn't find a camera\n");
}
return 0;
}
|