From c67fd6ec36e91e370fdcb6c2d09b59ecd842130b Mon Sep 17 00:00:00 2001 From: Marius Vollmer Date: Wed, 7 Jul 2004 07:39:10 +0000 Subject: [PATCH] (Booleans): Flag all function-like definitions as "C Functions". --- doc/ref/scheme-data.texi | 10 +++++----- 1 file 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.