]> git.sur5r.net Git - ngadmin/blob - cli/com_list.c
9630f76d05392ddbb9886f0121bcc3b24889a37e
[ngadmin] / cli / com_list.c
1
2 #include "commands.h"
3
4
5
6 bool do_list (int nb UNUSED, const char **com UNUSED, struct ngadmin *nga) {
7  
8  int n;
9  const struct swi_attr *sa;
10  
11  
12  sa=ngadmin_getSwitchTab(nga, &n);
13  displaySwitchTab(sa, n);
14  
15  
16  return true;
17  
18 }
19
20