RTEMS 5.2
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
rtl-shell.h
Go to the documentation of this file.
1/*
2 * COPYRIGHT (c) 2012 Chris Johns <chrisj@rtems.org>
3 *
4 * The license and distribution terms for this file may be
5 * found in the file LICENSE in this distribution or at
6 * http://www.rtems.org/license/LICENSE.
7 */
16#if !defined (_RTEMS_RTL_SHELL_H_)
17#define _RTEMS_RTL_SHELL_H_
18
19#include <rtems/print.h>
20
21#ifdef __cplusplus
22extern "C" {
23#endif /* __cplusplus */
24
33int rtems_rtl_shell_command (int argc, char* argv[]);
34
38int rtems_rtl_shell_list (const rtems_printer* printer, int argc, char* argv[]);
39
43int rtems_rtl_shell_sym (const rtems_printer* printer, int argc, char* argv[]);
44
48int rtems_rtl_shell_object (const rtems_printer* printer, int argc, char* argv[]);
49
50
54int rtems_rtl_shell_archive (const rtems_printer* printer, int argc, char* argv[]);
55
59int rtems_rtl_shell_call (const rtems_printer* printer, int argc, char* argv[]);
60
61#ifdef __cplusplus
62}
63#endif /* __cplusplus */
64
65#endif
User print interface to the bspIO print plug in.
int rtems_rtl_shell_list(const rtems_printer *printer, int argc, char *argv[])
Definition: rtl-shell.c:597
int rtems_rtl_shell_sym(const rtems_printer *printer, int argc, char *argv[])
Definition: rtl-shell.c:640
int rtems_rtl_shell_archive(const rtems_printer *printer, int argc, char *argv[])
Definition: rtl-shell.c:791
int rtems_rtl_shell_call(const rtems_printer *printer, int argc, char *argv[])
Definition: rtl-shell.c:977
int rtems_rtl_shell_command(int argc, char *argv[])
Definition: rtl-shell.c:1174
int rtems_rtl_shell_object(const rtems_printer *printer, int argc, char *argv[])
Definition: rtl-shell.c:678
Definition: printer.h:55