*** empty log message ***
[bpt/guile.git] / libguile / vectors.h
index 3d64a1b..77d6131 100644 (file)
@@ -53,6 +53,8 @@
 
 #define SCM_VECTORP(x) (SCM_NIMP (x) && (SCM_TYP7S (x) == scm_tc7_vector))
 #define SCM_VECTOR_BASE(x) ((scm_bits_t *) SCM_CELL_WORD_1 (x))
+#define SCM_SET_VECTOR_BASE(v, b) (SCM_SET_CELL_WORD_1 ((v), (b)))
+#define SCM_VECTOR_MAX_LENGTH ((1L << 24) - 1)
 #define SCM_VECTOR_LENGTH(x) (((unsigned long) SCM_CELL_WORD_0 (x)) >> 8)
 #define SCM_SET_VECTOR_LENGTH(v, l, t) (SCM_SET_CELL_WORD_0 ((v), ((l) << 8) + (t)))
 
@@ -72,6 +74,8 @@
 
 \f
 
+extern SCM scm_c_make_vector (unsigned long int k, SCM fill);
+
 extern SCM scm_vector_p (SCM x);
 extern SCM scm_vector_length (SCM v);
 extern SCM scm_vector (SCM l);
@@ -91,7 +95,6 @@ extern void scm_init_vectors (void);
 
 #if (SCM_DEBUG_DEPRECATED == 0)
 
-#define SCM_NVECTORP(x) (!SCM_VECTORP (x))
 extern SCM scm_vector_set_length_x (SCM vect, SCM len);
 
 #endif  /* SCM_DEBUG_DEPRECATED == 0 */