1 /**
2  * \file
3  * \brief    command line handling
4  *
5  * \date     2003
6  * \author   Frank Mehnert <fm3@os.inf.tu-dresden.de> */
7 
8 /*
9  * (c) 2003-2009 Author(s)
10  *     economic rights: Technische Universität Dresden (Germany)
11  * This file is part of TUD:OS and distributed under the terms of the
12  * GNU Lesser General Public License 2.1.
13  * Please see the COPYING-LGPL-2.1 file for details.
14  */
15 
16 #ifndef L4UTIL_MBI_ARGV
17 #define L4UTIL_MBI_ARGV
18 
19 #include <l4/sys/l4int.h>
20 #include <l4/util/mb_info.h>
21 #include <l4/sys/compiler.h>
22 
23 EXTERN_C_BEGIN
24 
25 void l4util_mbi_to_argv(l4_mword_t flag, l4util_mb_info_t *mbi);
26 
27 extern int  l4util_argc;
28 extern char *l4util_argv[];
29 
30 EXTERN_C_END
31 
32 #endif
33 
34