summaryrefslogtreecommitdiff
path: root/lib/util/charset/charset.h
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2009-04-23 15:24:38 +0200
committerJelmer Vernooij <jelmer@samba.org>2009-04-23 17:50:18 +0200
commit80420745ff2998626a302b5f863db8364e858f8f (patch)
tree5e6a24950a0f4a79bc35996959889962ad8a6472 /lib/util/charset/charset.h
parentae6af9ecbfce559a50d95853d6e66b8aa8788741 (diff)
downloadsamba-80420745ff2998626a302b5f863db8364e858f8f.tar.gz
samba-80420745ff2998626a302b5f863db8364e858f8f.tar.bz2
samba-80420745ff2998626a302b5f863db8364e858f8f.zip
Add a new non-convenience version of push_codepoint.
Diffstat (limited to 'lib/util/charset/charset.h')
-rw-r--r--lib/util/charset/charset.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/util/charset/charset.h b/lib/util/charset/charset.h
index 37c5acafaf..2c8aa41ad5 100644
--- a/lib/util/charset/charset.h
+++ b/lib/util/charset/charset.h
@@ -151,11 +151,12 @@ ssize_t iconv_talloc(TALLOC_CTX *mem_ctx,
extern struct smb_iconv_convenience *global_iconv_convenience;
codepoint_t next_codepoint(const char *str, size_t *size);
+ssize_t push_codepoint(char *str, codepoint_t c);
/* codepoints */
codepoint_t next_codepoint_convenience(struct smb_iconv_convenience *ic,
const char *str, size_t *size);
-ssize_t push_codepoint(struct smb_iconv_convenience *ic,
+ssize_t push_codepoint_convenience(struct smb_iconv_convenience *ic,
char *str, codepoint_t c);
codepoint_t toupper_m(codepoint_t val);
codepoint_t tolower_m(codepoint_t val);