diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 1998-07-16 22:31:59 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 1998-07-16 22:31:59 +0000 |
commit | b774ee1fdd672f5a759534b1a7a712b254c9ca56 (patch) | |
tree | b31362cd88d1f6a385741192e92782d95e368d57 /libguile/gh.h | |
parent | a515d28771ec68ca5dfb324d8e5c857ddfec6e15 (diff) | |
download | guile-b774ee1fdd672f5a759534b1a7a712b254c9ca56.tar.gz |
* gh_data.c, gh.h (gh_ints2scm, gh_longs2ivect,
gh_ulongs2uvect): New procedures. (Complements gh_doubles2scm and
gh_doubles2dvect.)
Diffstat (limited to 'libguile/gh.h')
-rw-r--r-- | libguile/gh.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libguile/gh.h b/libguile/gh.h index 8cd82d172..1b6b1e8a9 100644 --- a/libguile/gh.h +++ b/libguile/gh.h @@ -106,6 +106,9 @@ 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_ints2scm(int *d, int n); +SCM gh_longs2ivect(long *d, int n); +SCM gh_ulongs2uvect(unsigned long *d, int n); SCM gh_doubles2scm(double *d, int n); #ifdef SCM_FLOATS SCM gh_doubles2dvect(double *d, int n); |