12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- typedef struct scm_t_option
- {
- unsigned int type
- const char *name
- scm_t_bits val
- char *doc
- } scm_t_option;
- SCM_API SCM scm_options_try (SCM args, scm_t_option options[], const char *s, int dry_run)
- SCM_API SCM scm_options (SCM, scm_t_option [], const char*)
- SCM_API void scm_init_opts (SCM (*) (SCM), scm_t_option [])
- SCM_INTERNAL void scm_init_options (void)
|