]> git.sur5r.net Git - ngadmin/blob - cli/com_quit.c
Code reorganized.
[ngadmin] / cli / com_quit.c
1
2 #include "common.h"
3
4
5
6
7 static bool do_quit (const struct TreeNode *tn UNUSED, int nb UNUSED, const char **com UNUSED, struct ngadmin *nga UNUSED) {
8  
9  cont=0;
10  
11  return true;
12  
13 }
14
15
16
17 const struct TreeNode com_quit=COM("quit", do_quit, false, NULL);
18
19
20