mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-15 16:20:17 +02:00
* list.c: Moved append docs to append! Thanks Dirk Hermann. Also,
added append docs from R4RS. * strings.c: Docstring typo fix, + eliminate unneeded IMP tests. Thanks Dirk Hermann! * chars.h: Provide SCM_CHARP, SCM_CHAR, SCM_MAKE_CHAR and deprecate SCM_ICHRP, SCM_ICHR, SCM_MAKICHR. Thanks Dirk Hermann! * *.h, *.c: Use SCM_CHARP, SCM_CHAR, SCM_MAKE_CHAR throughout. Drop use of SCM_P for function prototypes... assume an ANSI C compiler. Thanks Dirk Hermann!
This commit is contained in:
parent
e510ed373f
commit
7866a09b5b
79 changed files with 939 additions and 938 deletions
|
@ -102,21 +102,21 @@ extern scm_sizet scm_struct_free_0 (SCM *vtable, SCM *data);
|
|||
extern scm_sizet scm_struct_free_light (SCM *vtable, SCM *data);
|
||||
extern scm_sizet scm_struct_free_standard (SCM *vtable, SCM *data);
|
||||
extern scm_sizet scm_struct_free_entity (SCM *vtable, SCM *data);
|
||||
extern void scm_struct_init SCM_P ((SCM handle, int tail_elts, SCM inits));
|
||||
extern SCM scm_make_struct_layout SCM_P ((SCM fields));
|
||||
extern SCM scm_struct_p SCM_P ((SCM x));
|
||||
extern SCM scm_struct_vtable_p SCM_P ((SCM x));
|
||||
extern SCM scm_make_struct SCM_P ((SCM vtable, SCM tail_array_size, SCM init));
|
||||
extern SCM scm_make_vtable_vtable SCM_P ((SCM extra_fields, SCM tail_array_size, SCM init));
|
||||
extern SCM scm_struct_ref SCM_P ((SCM handle, SCM pos));
|
||||
extern SCM scm_struct_set_x SCM_P ((SCM handle, SCM pos, SCM val));
|
||||
extern SCM scm_struct_vtable SCM_P ((SCM handle));
|
||||
extern SCM scm_struct_vtable_tag SCM_P ((SCM handle));
|
||||
extern unsigned int scm_struct_ihashq SCM_P ((SCM obj, unsigned int n));
|
||||
extern SCM scm_struct_create_handle SCM_P ((SCM obj));
|
||||
extern SCM scm_struct_vtable_name SCM_P ((SCM vtable));
|
||||
extern SCM scm_set_struct_vtable_name_x SCM_P ((SCM vtable, SCM name));
|
||||
extern void scm_print_struct SCM_P ((SCM exp, SCM port, scm_print_state *));
|
||||
extern void scm_init_struct SCM_P ((void));
|
||||
extern void scm_struct_init (SCM handle, int tail_elts, SCM inits);
|
||||
extern SCM scm_make_struct_layout (SCM fields);
|
||||
extern SCM scm_struct_p (SCM x);
|
||||
extern SCM scm_struct_vtable_p (SCM x);
|
||||
extern SCM scm_make_struct (SCM vtable, SCM tail_array_size, SCM init);
|
||||
extern SCM scm_make_vtable_vtable (SCM extra_fields, SCM tail_array_size, SCM init);
|
||||
extern SCM scm_struct_ref (SCM handle, SCM pos);
|
||||
extern SCM scm_struct_set_x (SCM handle, SCM pos, SCM val);
|
||||
extern SCM scm_struct_vtable (SCM handle);
|
||||
extern SCM scm_struct_vtable_tag (SCM handle);
|
||||
extern unsigned int scm_struct_ihashq (SCM obj, unsigned int n);
|
||||
extern SCM scm_struct_create_handle (SCM obj);
|
||||
extern SCM scm_struct_vtable_name (SCM vtable);
|
||||
extern SCM scm_set_struct_vtable_name_x (SCM vtable, SCM name);
|
||||
extern void scm_print_struct (SCM exp, SCM port, scm_print_state *);
|
||||
extern void scm_init_struct (void);
|
||||
|
||||
#endif /* STRUCTH */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue