]> git.sur5r.net Git - ngadmin/blob - cli/com_quit.c
Cli: refactor, change coding style
[ngadmin] / cli / com_quit.c
1
2 #include "commands.h"
3
4
5 bool do_quit (int nb UNUSED, const char **com UNUSED, struct ngadmin *nga UNUSED)
6 {
7         cont = 0;
8         
9         return true;
10 }
11
12