aboutsummaryrefslogtreecommitdiff
path: root/libsylph/utils.h
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-09-21 11:07:51 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-09-21 11:07:51 +0000
commitf9f8dd90bd443d43855c8a673100d199a1ac6560 (patch)
treedcd78f6ff33d83e00bc56825eb07ba2b1584c774 /libsylph/utils.h
parent1eb9f56ddbd870069cd77a20d7150ac82961042c (diff)
removed mbs/wcs functions which are no longer required.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@596 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'libsylph/utils.h')
-rw-r--r--libsylph/utils.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/libsylph/utils.h b/libsylph/utils.h
index 7301c59b..41760bb5 100644
--- a/libsylph/utils.h
+++ b/libsylph/utils.h
@@ -35,9 +35,6 @@
#if HAVE_ALLOCA_H
# include <alloca.h>
#endif
-#if HAVE_WCHAR_H
-# include <wchar.h>
-#endif
/* Wrappers for C library function that take pathname arguments. */
#if GLIB_CHECK_VERSION(2, 6, 0)
@@ -237,42 +234,6 @@ gchar *strncpy2 (gchar *dest,
const gchar *src,
size_t n);
-/* wide-character functions */
-#if !HAVE_ISWALNUM
-int iswalnum (wint_t wc);
-#endif
-#if !HAVE_ISWSPACE
-int iswspace (wint_t wc);
-#endif
-#if !HAVE_TOWLOWER
-wint_t towlower (wint_t wc);
-#endif
-
-#if !HAVE_WCSLEN
-size_t wcslen (const wchar_t *s);
-#endif
-#if !HAVE_WCSCPY
-wchar_t *wcscpy (wchar_t *dest,
- const wchar_t *src);
-#endif
-#if !HAVE_WCSNCPY
-wchar_t *wcsncpy (wchar_t *dest,
- const wchar_t *src,
- size_t n);
-#endif
-
-wchar_t *wcsdup (const wchar_t *s);
-wchar_t *wcsndup (const wchar_t *s,
- size_t n);
-wchar_t *strdup_mbstowcs (const gchar *s);
-gchar *strdup_wcstombs (const wchar_t *s);
-gint wcsncasecmp (const wchar_t *s1,
- const wchar_t *s2,
- size_t n);
-wchar_t *wcscasestr (const wchar_t *haystack,
- const wchar_t *needle);
-gint get_mbs_len (const gchar *s);
-
gboolean is_next_nonascii (const gchar *s);
gint get_next_word_len (const gchar *s);