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

1999-10-26 Mark Galassi <rosalia@lanl.gov>

* gh.h, gh_data.c (gh_symbol2scm): changed gh_symbol2scm() to take
	a const char * argument, upon suggestion from Lynn Winebarger.
This commit is contained in:
Mark Galassi 1999-10-26 19:38:05 +00:00
parent cd19d608b1
commit 4921140c64
3 changed files with 7 additions and 2 deletions

View file

@ -106,7 +106,7 @@ SCM gh_char2scm(char c);
SCM gh_str2scm(char *s, int len);
SCM gh_str02scm(char *s);
void gh_set_substr(char *src, SCM dst, int start, int len);
SCM gh_symbol2scm(char *symbol_str);
SCM gh_symbol2scm(const char *symbol_str);
SCM gh_ints2scm(int *d, int n);
SCM gh_chars2byvect(char *d, int n);
SCM gh_shorts2svect(short *d, int n);