source: asp3_tinet_ecnl_rx/trunk/ntshell/ntshell/usrcmd.h@ 340

Last change on this file since 340 was 340, checked in by coas-nagasima, 6 years ago

NTPクライアント処理を追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-chdr;charset=UTF-8
File size: 2.1 KB
Line 
1/**
2 * @file usrcmd.h
3 * @author CuBeatSystems
4 * @author Shinichiro Nakamura
5 * @copyright
6 * ===============================================================
7 * Natural Tiny Shell (NT-Shell) Version 0.3.1
8 * ===============================================================
9 * Copyright (c) 2010-2016 Shinichiro Nakamura
10 *
11 * Permission is hereby granted, free of charge, to any person
12 * obtaining a copy of this software and associated documentation
13 * files (the "Software"), to deal in the Software without
14 * restriction, including without limitation the rights to use,
15 * copy, modify, merge, publish, distribute, sublicense, and/or
16 * sell copies of the Software, and to permit persons to whom the
17 * Software is furnished to do so, subject to the following
18 * conditions:
19 *
20 * The above copyright notice and this permission notice shall be
21 * included in all copies or substantial portions of the Software.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
25 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
27 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
28 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
29 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
30 * OTHER DEALINGS IN THE SOFTWARE.
31 */
32
33#ifndef USRCMD_H
34#define USRCMD_H
35
36typedef int(*USRCMDFUNC)(int argc, char **argv);
37
38typedef struct
39{
40 const char *cmd;
41 const char *desc;
42 USRCMDFUNC func;
43} cmd_table_t;
44
45int usrcmd_cd(int argc, char **argv);
46int usrcmd_ls(int argc, char **argv);
47int usrcmd_cp(int argc, char **argv);
48int usrcmd_rm(int argc, char **argv);
49int usrcmd_mv(int argc, char **argv);
50int usrcmd_mkdir(int argc, char **argv);
51int usrcmd_hexdump(int argc, char **argv);
52int usrcmd_date(int argc, char **argv);
53
54int usrcmd_help(int argc, char **argv);
55int usrcmd_info(int argc, char **argv);
56int usrcmd_exit(int argc, char **argv);
57
58void shell_abort();
59void shell_exit(int exitcd);
60int shell_kill(int pid, int sig);
61
62#endif
63
Note: See TracBrowser for help on using the repository browser.