4c065e797f992fc5b5a254f971ea5440498f2fdd
[fw/altos] / ao-tools / ao-list / ao-list.c
1 /*
2  * Copyright © 2009 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 #include <stdio.h>
19 #include <stdlib.h>
20 #include <unistd.h>
21 #include <getopt.h>
22 #include "cc.h"
23
24 int
25 main (int argc, char **argv)
26 {
27         struct cc_usbdevs       *devs;
28         struct cc_usbdev        *dev;
29         int                     i;
30
31         devs = cc_usbdevs_scan(TRUE);
32         if (devs) {
33                 for (i = 0; i < devs->ndev; i++) {
34                         dev = devs->dev[i];
35                         printf ("%-20.20s %6d %s\n",
36                                 dev->product, dev->serial, dev->tty ? dev->tty : "(none)");
37                 }
38                 cc_usbdevs_free(devs);
39         }
40         return 0;
41 }