diff options
author | Marius Vollmer <mvo@zagadka.de> | 2004-07-07 07:39:10 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2004-07-07 07:39:10 +0000 |
commit | c67fd6ec36e91e370fdcb6c2d09b59ecd842130b (patch) | |
tree | 0d043800a6cd2e137af6d679c34ad53461f91422 | |
parent | c309617ce766c410c639fa497a7dd673866de8f2 (diff) | |
download | guile-c67fd6ec36e91e370fdcb6c2d09b59ecd842130b.tar.gz |
(Booleans): Flag all function-like definitions as "C Functions".
-rwxr-xr-x | doc/ref/scheme-data.texi | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/ref/scheme-data.texi b/doc/ref/scheme-data.texi index afcd092ba..ef5789877 100755 --- a/doc/ref/scheme-data.texi +++ b/doc/ref/scheme-data.texi @@ -131,24 +131,24 @@ The @code{SCM} representation of the Scheme object @code{#t}. The @code{SCM} representation of the Scheme object @code{#f}. @end deftypevr -@deftypefn {C Macro} int scm_is_true (SCM obj) +@deftypefn {C Function} int scm_is_true (SCM obj) Return @code{0} if @var{obj} is @code{#f}, else return @code{1}. @end deftypefn -@deftypefn {C Macro} int scm_is_false (SCM obj) +@deftypefn {C Function} int scm_is_false (SCM obj) Return @code{1} if @var{obj} is @code{#f}, else return @code{0}. @end deftypefn -@deftypefn {C Macro} scm_is_bool (SCM obj) +@deftypefn {C Function} int scm_is_bool (SCM obj) Return @code{1} if @var{obj} is either @code{#t} or @code{#f}, else return @code{0}. @end deftypefn -@deftypefn {C Macro} SCM scm_from_bool (int val) +@deftypefn {C Function} SCM scm_from_bool (int val) Return @code{#f} if @var{val} is @code{0}, else return @code{#t}. @end deftypefn -@deftypefn {C Macro} int scm_to_bool (SCM val) +@deftypefn {C Function} int scm_to_bool (SCM val) Return @code{1} if @var{val} is @code{SCM_BOOL_T}, return @code{0} when @var{val} is @code{SCM_BOOL_F}, else signal a `wrong type' error. |