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(const char *args); 13 extern void setup_args_progname(const char *args); 14 extern void setup_env(char *env, int size); 15 extern void add_setup_arg(const char *arg); 16 17 #endif 18