diff options
author | Andrew Bartlett <abartlet@samba.org> | 2009-03-19 19:20:08 +1100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-04-07 20:51:56 +0200 |
commit | 0c22d55134b39a6bc983b4f852f623a51af4d362 (patch) | |
tree | 1a2af9fd71978e2bc1a7c0b5abb691db347babfb /source3/lib | |
parent | 3277b19800c6c56a32b7641d293e496475d8c62a (diff) | |
download | samba-0c22d55134b39a6bc983b4f852f623a51af4d362.tar.gz samba-0c22d55134b39a6bc983b4f852f623a51af4d362.tar.bz2 samba-0c22d55134b39a6bc983b4f852f623a51af4d362.zip |
s3:charcnv Remove unused unistrcpy() and unistrlen()
Signed-off-by: Günther Deschner <gd@samba.org>
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/util_unistr.c | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/source3/lib/util_unistr.c b/source3/lib/util_unistr.c index 3a6971dcce..7d80b3cdea 100644 --- a/source3/lib/util_unistr.c +++ b/source3/lib/util_unistr.c @@ -850,43 +850,6 @@ smb_ucs2_t *strstr_wa(const smb_ucs2_t *s, const char *ins) return NULL; } -/******************************************************************* - Returns the length in number of wide characters. -******************************************************************/ - -int unistrlen(uint16 *s) -{ - int len; - - if (!s) { - return -1; - } - - for (len=0; SVAL(s,0); s++,len++) { - ; - } - - return len; -} - -/******************************************************************* - Strcpy for unicode strings. Returns length (in num of wide chars). - Not odd align safe. -********************************************************************/ - -int unistrcpy(uint16 *dst, uint16 *src) -{ - int num_wchars = 0; - - while (SVAL(src,0)) { - *dst++ = *src++; - num_wchars++; - } - *dst = 0; - - return num_wchars; -} - /************************************************************* ascii only toupper - saves the need for smbd to be in C locale. *************************************************************/ |