RTEMS  5.0.0
bspcmdline.h
Go to the documentation of this file.
1 
16 /*
17  * COPYRIGHT (c) 1989-2009.
18  * On-Line Applications Research Corporation (OAR).
19  *
20  * The license and distribution terms for this file may be
21  * found in the file LICENSE in this distribution or at
22  * http://www.rtems.org/license/LICENSE.
23  */
24 
25 #ifndef __BSP_COMMAND_LINE_h
26 #define __BSP_COMMAND_LINE_h
27 
37 #include <stddef.h> /* for size_t */
38 
39 #ifdef __cplusplus
40 extern "C" {
41 #endif
42 
43 
53 const char *rtems_bsp_cmdline_get(void);
54 
73 const char *rtems_bsp_cmdline_get_param(
74  const char *name,
75  char *value,
76  size_t length
77 );
78 
79 
99  const char *name,
100  char *value,
101  size_t length
102 );
103 
123  const char *name
124 );
125 
126 #ifdef __cplusplus
127 }
128 #endif
129 
131 #endif
const char * rtems_bsp_cmdline_get(void)
Obtain Pointer to BSP Boot Command String.
Definition: bspcmdline_get.c:25
const char * rtems_bsp_cmdline_get_param(const char *name, char *value, size_t length)
Obtain COPY of the Entire Matching Argument.
Definition: bspcmdline_getparam.c:45
const char * rtems_bsp_cmdline_get_param_raw(const char *name)
Obtain Pointer to the Entire Matching Argument.
Definition: bspcmdline_getparamraw.c:27
const char * rtems_bsp_cmdline_get_param_rhs(const char *name, char *value, size_t length)
Obtain COPY of the Right Hand Side of the Matching Argument.
Definition: bspcmdline_getparamrhs.c:25