RTEMS  5.1
bspcmdline.h
Go to the documentation of this file.
1 
15 /*
16  * COPYRIGHT (c) 1989-2009.
17  * On-Line Applications Research Corporation (OAR).
18  *
19  * The license and distribution terms for this file may be
20  * found in the file LICENSE in this distribution or at
21  * http://www.rtems.org/license/LICENSE.
22  */
23 
24 #ifndef __BSP_COMMAND_LINE_h
25 #define __BSP_COMMAND_LINE_h
26 
38 #include <stddef.h> /* for size_t */
39 
40 #ifdef __cplusplus
41 extern "C" {
42 #endif
43 
44 
54 const char *rtems_bsp_cmdline_get(void);
55 
74 const char *rtems_bsp_cmdline_get_param(
75  const char *name,
76  char *value,
77  size_t length
78 );
79 
80 
100  const char *name,
101  char *value,
102  size_t length
103 );
104 
124  const char *name
125 );
126 
127 #ifdef __cplusplus
128 }
129 #endif
130 
132 #endif
const char * rtems_bsp_cmdline_get(void)
Obtain Pointer to BSP Boot Command String.
Definition: bspcmdline_get.c:26
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:46
const char * rtems_bsp_cmdline_get_param_raw(const char *name)
Obtain Pointer to the Entire Matching Argument.
Definition: bspcmdline_getparamraw.c:28
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:26