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

(SCM_ARRAYP, SCM_ARRAY_NDIM, SCM_ARRAY_CONTP, SCM_ARRAY_MEM,

SCM_ARRAY_V, SCM_ARRAY_BASE, SCM_ARRAY_DIMS, scm_t_array): New
deprecated versions.
This commit is contained in:
Marius Vollmer 2005-01-11 16:55:29 +00:00
parent 8789459042
commit 1f366ef7f0
2 changed files with 71 additions and 0 deletions

View file

@ -476,6 +476,17 @@ SCM_API SCM SCM_VECTOR_REF (SCM x, size_t idx);
SCM_API void SCM_VECTOR_SET (SCM x, size_t idx, SCM val);
SCM_API SCM scm_vector_equal_p (SCM x, SCM y);
typedef scm_i_t_array scm_t_array;
SCM_API int SCM_ARRAYP (SCM a);
SCM_API size_t SCM_ARRAY_NDIM (SCM a);
SCM_API int SCM_ARRAY_CONTP (SCM a);
SCM_API scm_t_array *SCM_ARRAY_MEM (SCM a);
SCM_API SCM SCM_ARRAY_V (SCM a);
SCM_API size_t SCM_ARRAY_BASE (SCM a);
SCM_API scm_t_array_dim *SCM_ARRAY_DIMS (SCM a);
void scm_i_init_deprecated (void);
#endif