1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-17 17:20:29 +02:00

Inline `scm_is_string'.

* libguile/strings.c (scm_is_string): Move to...
* libguile/inline.h (scm_is_string): ... here.  Inline.
This commit is contained in:
Ludovic Courtès 2010-12-16 15:20:10 +01:00
parent 18f06db925
commit 183f784947
2 changed files with 8 additions and 5 deletions

View file

@ -1405,11 +1405,6 @@ SCM_DEFINE (scm_string_append, "string-append", 0, 0, 1,
}
#undef FUNC_NAME
int
scm_is_string (SCM obj)
{
return IS_STRING (obj);
}
/* Conversion to/from other encodings. */