summaryrefslogtreecommitdiff
path: root/libguile/print.h
diff options
context:
space:
mode:
authorMichael Gran <spk121@yahoo.com>2009-08-10 05:51:05 -0700
committerMichael Gran <spk121@yahoo.com>2009-08-10 05:51:05 -0700
commit32be5735cd89931048f12283f3977c72cd292f77 (patch)
tree3e2050a23465a04f7be5016c38ffc25b46caa6fb /libguile/print.h
parent6ce6923b6826db2f2ddc8a5f787ab57d7072f0e8 (diff)
downloadguile-32be5735cd89931048f12283f3977c72cd292f77.tar.gz
Make scm_charprint and scm_i_string_wide_chars SCM_INTERNAL.
Also, scm_charprint is renamed to scm_i_charprint. * libguile/strings.h: make scm_i_string_wide_chars internal. * libguile/print.h: rename scm_charprint to scm_i_charprint. Make internal. * libguile/print.c (scm_i_charprint): renamed from scm_charprint (scm_charprint): renamed to scm_i_charprint. All callers changed.
Diffstat (limited to 'libguile/print.h')
-rw-r--r--libguile/print.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/print.h b/libguile/print.h
index 1df29522c..00648efc1 100644
--- a/libguile/print.h
+++ b/libguile/print.h
@@ -77,7 +77,7 @@ SCM_API SCM scm_print_options (SCM setting);
SCM_API SCM scm_make_print_state (void);
SCM_API void scm_free_print_state (SCM print_state);
SCM_INTERNAL SCM scm_i_port_with_print_state (SCM port, SCM print_state);
-SCM_API void scm_charprint (scm_t_uint32 c, SCM port);
+SCM_INTERNAL void scm_i_charprint (scm_t_uint32 c, SCM port);
SCM_API void scm_intprint (scm_t_intmax n, int radix, SCM port);
SCM_API void scm_uintprint (scm_t_uintmax n, int radix, SCM port);
SCM_API void scm_ipruk (char *hdr, SCM ptr, SCM port);