xref: /kvm-unit-tests/lib/argv.h (revision 2c96b77ec9d3b1fcec7525174e23a6240ee05949)
1 /*
2  * Set up arguments for main() and prepare environment variables
3  *
4  * This code is free software; you can redistribute it and/or modify it
5  * under the terms of the GNU Library General Public License version 2.
6  */
7 
8 #ifndef _ARGV_H_
9 #define _ARGV_H_
10 
11 extern void __setup_args(void);
12 extern void setup_args_progname(const char *args);
13 extern void setup_env(char *env, int size);
14 extern void add_setup_arg(const char *arg);
15 
16 #endif
17