summaryrefslogtreecommitdiff
path: root/tools.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2007-06-16 09:05:22 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2007-06-16 09:05:22 +0200
commit81e44bce198d53d0515290724c0ec8f989b9e01d (patch)
tree009b9b660df3e62d0d019554caa9cf8cf50d4259 /tools.h
parent4011e244ff98195b5662074a483691b23dab0d14 (diff)
downloadvdr-81e44bce198d53d0515290724c0ec8f989b9e01d.tar.gz
vdr-81e44bce198d53d0515290724c0ec8f989b9e01d.tar.bz2
Renamed Utf8NumSyms() to Utf8StrLen()
Diffstat (limited to 'tools.h')
-rw-r--r--tools.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools.h b/tools.h
index 3256c352..005c9228 100644
--- a/tools.h
+++ b/tools.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: tools.h 1.99 2007/06/15 12:18:37 kls Exp $
+ * $Id: tools.h 1.100 2007/06/16 09:05:22 kls Exp $
*/
#ifndef __TOOLS_H
@@ -93,7 +93,7 @@ int Utf8CharSet(uint c, char *s = NULL);
int Utf8SymChars(const char *s, int Symbols);
///< Returns the number of character bytes at the beginning of the given
///< string that form at most the given number of UTF-8 symbols.
-int Utf8NumSyms(const char *s);
+int Utf8StrLen(const char *s);
///< Returns the number of UTF-8 symbols formed by the given string of
///< character bytes.
int Utf8ToArray(const char *s, uint *a, int Size);