summaryrefslogtreecommitdiff
path: root/libguile/srfi-4.h
diff options
context:
space:
mode:
authorMarius Vollmer <mvo@zagadka.de>2004-11-10 01:02:32 +0000
committerMarius Vollmer <mvo@zagadka.de>2004-11-10 01:02:32 +0000
commit69730f92cac43d50e890ea1e41a0be4117533372 (patch)
tree19aa5dd9b2412fb60f22950f181c9f045d74ba64 /libguile/srfi-4.h
parent2c72f253011e3c7321b57716ba7e923858e33728 (diff)
downloadguile-69730f92cac43d50e890ea1e41a0be4117533372.tar.gz
Do not include <libguile.h>, include the
needed files directly. Include config.h, <unistd.h> and <io.h> when available. (scm_uniform_vector_read_x, scm_uniform_vector_write): New.
Diffstat (limited to 'libguile/srfi-4.h')
-rw-r--r--libguile/srfi-4.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libguile/srfi-4.h b/libguile/srfi-4.h
index 2b59cdd99..de426a00d 100644
--- a/libguile/srfi-4.h
+++ b/libguile/srfi-4.h
@@ -30,6 +30,10 @@ SCM_API SCM scm_uniform_vector_length (SCM v);
SCM_API SCM scm_uniform_vector_ref (SCM v, SCM idx);
SCM_API SCM scm_uniform_vector_set_x (SCM v, SCM idx, SCM val);
SCM_API SCM scm_uniform_vector_to_list (SCM v);
+SCM_API SCM scm_uniform_vector_read_x (SCM v, SCM port_or_fd,
+ SCM start, SCM end);
+SCM_API SCM scm_uniform_vector_write (SCM v, SCM port_or_fd,
+ SCM start, SCM end);
SCM_API int scm_is_uniform_vector (SCM obj);
SCM_API size_t scm_c_uniform_vector_length (SCM v);