diff options
Diffstat (limited to 'srfi/srfi-13.h')
-rw-r--r-- | srfi/srfi-13.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/srfi/srfi-13.h b/srfi/srfi-13.h index 525089d15..86c21a832 100644 --- a/srfi/srfi-13.h +++ b/srfi/srfi-13.h @@ -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); |