xref: /kvm-unit-tests/lib/argv.h (revision 1d4fa329a31388063d679e8c831339f42ff4ceb3)
163d5cbecSThomas Huth /*
263d5cbecSThomas Huth  * Set up arguments for main() and prepare environment variables
363d5cbecSThomas Huth  *
463d5cbecSThomas Huth  * This code is free software; you can redistribute it and/or modify it
563d5cbecSThomas Huth  * under the terms of the GNU Library General Public License version 2.
663d5cbecSThomas Huth  */
763d5cbecSThomas Huth 
8*1d4fa329SCornelia Huck #ifndef _ARGV_H_
9*1d4fa329SCornelia Huck #define _ARGV_H_
10*1d4fa329SCornelia Huck 
1163d5cbecSThomas Huth extern void __setup_args(void);
1263d5cbecSThomas Huth extern void setup_args_progname(const char *args);
1363d5cbecSThomas Huth extern void setup_env(char *env, int size);
1403b1e457SNadav Amit extern void add_setup_arg(const char *arg);
15*1d4fa329SCornelia Huck 
16*1d4fa329SCornelia Huck #endif
17