12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- SCM_INLINE int scm_is_string (SCM x)
- SCM_INLINE SCM scm_cell (scm_t_bits car, scm_t_bits cdr)
- SCM_INLINE SCM scm_double_cell (scm_t_bits car, scm_t_bits cbr,
- scm_t_bits ccr, scm_t_bits cdr)
- SCM_INLINE SCM scm_words (scm_t_bits car, scm_t_uint32 n_words)
- SCM_INLINE_IMPLEMENTATION int
- scm_is_string (SCM x)
- {
- return SCM_HAS_TYP7 (x, scm_tc7_string);
- }
|