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

* srfi-13.h

(scm_reverse_string_concatenate): renamed to
	scm_string_concatentate_reverse.
	(scm_reverse_string_concatenate_shared): renamed to
	scm_string_concatenate_reverse_shared.
This commit is contained in:
Rob Browning 2001-04-27 21:10:46 +00:00
parent 96230533fa
commit 53aef014da

View file

@ -107,9 +107,9 @@ SCM scm_string_reverse (SCM str, SCM start, SCM end);
SCM scm_string_reverse_x (SCM str, SCM start, SCM end);
SCM scm_string_append_shared (SCM ls);
SCM scm_string_concatenate (SCM ls);
SCM scm_reverse_string_concatenate (SCM ls, SCM final_string, SCM end);
SCM scm_string_concatenate_shared (SCM ls);
SCM scm_reverse_string_concatenate_shared (SCM ls, SCM final_string, SCM end);
SCM scm_string_concatenate_reverse (SCM ls, SCM final_string, SCM end);
SCM scm_string_concatenate_reverse_shared (SCM ls, SCM final_string, SCM end);
SCM scm_string_map (SCM s, SCM proc, SCM start, SCM end);
SCM scm_string_map_x (SCM s, SCM proc, SCM start, SCM end);
SCM scm_string_fold (SCM kons, SCM knil, SCM s, SCM start, SCM end);