lilypond-1.3.0
[lilypond.git] / lily / property-inspect.cc
blob5e29f4160b094c8e262ea205cb960ea5ea7bb01e
1 /*
2 property-inspect.cc -- implement Property inspect funcs.
4 source file of the GNU LilyPond music typesetter
6 (c) 1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8 */
10 #include "property-inspect.hh"
12 bool
13 isdir_b (SCM s)
15 if (SCM_NUMBERP (s))
17 int i = gh_int2scm (s);
18 return i>= -1 && i <= 1;
20 return false;
23 Direction
24 to_dir (SCM s)
26 return (Direction) gh_scm2int (s);