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

* Added function scm_str2string. Thanks to Martin Baulig.

This commit is contained in:
Dirk Herrmann 2001-09-12 19:53:57 +00:00
parent 6ddd941279
commit b00418df09
6 changed files with 20 additions and 53 deletions

View file

@ -162,6 +162,14 @@ scm_mem2string (const char *src, size_t len)
return s;
}
SCM
scm_str2string (const char *src)
{
return scm_mem2string (src, strlen (src));
}
SCM
scm_makfrom0str (const char *src)
{