*** empty log message ***
[bpt/guile.git] / libguile / options.h
index b79d24e..7b36fc2 100644 (file)
@@ -2,7 +2,7 @@
 
 #ifndef OPTIONSH
 #define OPTIONSH
-/*     Copyright (C) 1995,1996 Free Software Foundation
+/*     Copyright (C) 1995,1996, 2000 Free Software Foundation
  * 
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -55,7 +55,12 @@ typedef struct scm_option
 {
   int type;
   char *name;
+
+  /*
+    schizophrenic use: both SCM and int
+   */
   unsigned long val;
+  /* SCM val */
   char *doc;
 } scm_option;
 
@@ -64,8 +69,14 @@ typedef struct scm_option
 #define SCM_OPTION_SCM     2
 
 
-extern SCM scm_options SCM_P ((SCM new_mode, scm_option options[], int n, const char *s));
-extern void scm_init_opts SCM_P ((SCM (*func) (SCM), scm_option options[], int n));
-extern void scm_init_options SCM_P ((void));
+extern SCM scm_options (SCM new_mode, scm_option options[], int n, const char *s);
+extern void scm_init_opts (SCM (*func) (SCM), scm_option options[], int n);
+extern void scm_init_options (void);
 
 #endif /* OPTIONSH */
+
+/*
+  Local Variables:
+  c-file-style: "gnu"
+  End:
+*/