diff options
author | Ludovic Courtès <ludo@gnu.org> | 2008-07-05 20:10:44 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2008-07-05 20:16:12 +0200 |
commit | 071bb6a84061dd8fba278219797fd376b0a54e10 (patch) | |
tree | 7010d07119758e684d9c7344a91993e03bb694dc /libguile/strings.h | |
parent | b6137ed741eb0f14a4fb68c98879b91ec8250039 (diff) | |
download | guile-071bb6a84061dd8fba278219797fd376b0a54e10.tar.gz |
Add `scm_c_symbol_length ()'.
Diffstat (limited to 'libguile/strings.h')
-rw-r--r-- | libguile/strings.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libguile/strings.h b/libguile/strings.h index 04ae552f9..ca5f52cd2 100644 --- a/libguile/strings.h +++ b/libguile/strings.h @@ -90,6 +90,7 @@ SCM_API SCM scm_string_append (SCM args); SCM_API SCM scm_c_make_string (size_t len, SCM chr); SCM_API size_t scm_c_string_length (SCM str); +SCM_API size_t scm_c_symbol_length (SCM sym); SCM_API SCM scm_c_string_ref (SCM str, size_t pos); SCM_API void scm_c_string_set_x (SCM str, size_t pos, SCM chr); SCM_API SCM scm_c_substring (SCM str, size_t start, size_t end); |