diff options
author | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2000-09-26 18:37:26 +0000 |
---|---|---|
committer | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2000-09-26 18:37:26 +0000 |
commit | a002f1a2cbdc39b2a52e6d1e100791f106fd34bb (patch) | |
tree | 010fa4a66fb57c2702970936f843d138b49c0d80 /libguile/strings.h | |
parent | 1660782ecfdb3a7eb3a17dea314e383749ddf538 (diff) | |
download | guile-a002f1a2cbdc39b2a52e6d1e100791f106fd34bb.tar.gz |
* Replaced a lot of references to SCM_CHARS.
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 0d518d7e8..c13ccfda3 100644 --- a/libguile/strings.h +++ b/libguile/strings.h @@ -52,6 +52,7 @@ #define SCM_STRINGP(x) (SCM_NIMP (x) && (SCM_TYP7S (x) == scm_tc7_string)) +#define SCM_STRING_UCHARS(x) ((unsigned char *) (SCM_CELL_WORD_1 (x))) #define SCM_STRING_CHARS(x) ((char *) (SCM_CELL_WORD_1 (x))) /* Is X a writable string (i.e., not a substring)? */ |