cmdline.h 487 B

123456789101112131415161718192021222324252627
  1. #ifndef AVM_CMDLINE_H
  2. #define AVM_CMDLINE_H 1
  3. #ifdef __cplusplus
  4. extern "C"
  5. {
  6. #endif
  7. extern list avm_default_command_line (int argc,
  8. char *argv[],
  9. int index,
  10. char *extension,
  11. char *paths,
  12. int default_to_stdin_mode,
  13. int force_text_input_mode,
  14. int *file_ordinal);
  15. extern list avm_environment (char *env[]);
  16. extern void avm_initialize_cmdline ();
  17. extern void avm_count_cmdline ();
  18. #ifdef __cplusplus
  19. }
  20. #endif
  21. #endif /* !AVM_CMDLINE_H */