diff options
author | Martin Grabmüller <mgrabmue@cs.tu-berlin.de> | 2001-04-25 14:28:11 +0000 |
---|---|---|
committer | Martin Grabmüller <mgrabmue@cs.tu-berlin.de> | 2001-04-25 14:28:11 +0000 |
commit | 653c72912796acd1084f2fd05edd249327cf3ea8 (patch) | |
tree | ce7de407d91d401ec9da8356a0e858c209d99d80 /srfi/srfi-14.h | |
parent | 0d3e064b0b798dbec9b155aa9aebfd255060cb28 (diff) | |
download | guile-653c72912796acd1084f2fd05edd249327cf3ea8.tar.gz |
* srfi-13.c (scm_string_replace): Take sizeof (char) into account
when using memmove().
* srfi-14.h: Added prototypes for all exported procedures..
* srfi-13.c: Include srfi-13.h
* srfi-13.h: New file containing the prototypes.
* Makefile.am: Removed guile-srfi.texi and info_TEXINFOS variable.
(libguile_srfi_srfi_13_14_la_SOURCES): Added srfi-14.h, so it gets
distributed.
(libguile_srfi_srfi_13_14_la_SOURCES): Added srfi-13.h.
Diffstat (limited to 'srfi/srfi-14.h')
-rw-r--r-- | srfi/srfi-14.h | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/srfi/srfi-14.h b/srfi/srfi-14.h index 623d1f9ab..6eef6f9f7 100644 --- a/srfi/srfi-14.h +++ b/srfi/srfi-14.h @@ -58,4 +58,51 @@ extern int scm_tc16_charset; void scm_init_srfi_14 (void); +SCM scm_char_set_p (SCM obj); +SCM scm_char_set_eq (SCM cs1, SCM csr); +SCM scm_char_set_leq (SCM cs1, SCM csr); +SCM scm_char_set_hash (SCM cs, SCM bound); +SCM scm_char_set_cursor (SCM cs); +SCM scm_char_set_ref (SCM cs, SCM cursor); +SCM scm_char_set_cursor_next (SCM cs, SCM cursor); +SCM scm_end_of_char_set_p (SCM cursor); +SCM scm_char_set_fold (SCM kons, SCM knil, SCM cs); +SCM scm_char_set_unfold (SCM p, SCM f, SCM g, SCM seed, SCM base_cs); +SCM scm_char_set_unfold_x (SCM p, SCM f, SCM g, SCM seed, SCM base_cs); +SCM scm_char_set_for_each (SCM proc, SCM cs); +SCM scm_char_set_map (SCM proc, SCM cs); +SCM scm_char_set_copy (SCM cs); +SCM scm_char_set (SCM rest); +SCM scm_list_to_char_set (SCM list, SCM base_cs); +SCM scm_list_to_char_set_x (SCM list, SCM base_cs); +SCM scm_string_to_char_set (SCM str, SCM base_cs); +SCM scm_string_to_char_set_x (SCM str, SCM base_cs); +SCM scm_char_set_filter (SCM pred, SCM cs, SCM base_cs); +SCM scm_char_set_filter_x (SCM pred, SCM cs, SCM base_cs); +SCM scm_ucs_range_to_char_set (SCM lower, SCM upper, SCM error, SCM base_cs); +SCM scm_ucs_range_to_char_set_x (SCM lower, SCM upper, SCM error, SCM base_cs); +SCM scm_char_set_size (SCM cs); +SCM scm_char_set_count (SCM pred, SCM cs); +SCM scm_char_set_to_list (SCM cs); +SCM scm_char_set_to_string (SCM cs); +SCM scm_char_set_contains_p (SCM cs, SCM ch); +SCM scm_char_set_every (SCM pred, SCM cs); +SCM scm_char_set_any (SCM pred, SCM cs); +SCM scm_char_set_adjoin (SCM cs, SCM rest); +SCM scm_char_set_delete (SCM cs, SCM rest); +SCM scm_char_set_adjoin_x (SCM cs, SCM rest); +SCM scm_char_set_delete_x (SCM cs, SCM rest); +SCM scm_char_set_complement (SCM cs); +SCM scm_char_set_union (SCM rest); +SCM scm_char_set_intersection (SCM cs1, SCM rest); +SCM scm_char_set_difference (SCM cs1, SCM rest); +SCM scm_char_set_xor (SCM cs1, SCM rest); +SCM scm_char_set_diff_plus_intersection (SCM cs1, SCM rest); +SCM scm_char_set_complement_x (SCM cs); +SCM scm_char_set_union_x (SCM cs1, SCM rest); +SCM scm_char_set_intersection_x (SCM cs1, SCM rest); +SCM scm_char_set_difference_x (SCM cs1, SCM rest); +SCM scm_char_set_xor_x (SCM cs1, SCM rest); +SCM scm_char_set_diff_plus_intersection_x (SCM cs1, SCM rest); + #endif /* SCM_SRFI_14_H */ |