diff options
author | Simon Zheng <simon.zheng@sun.com> | 2006-01-10 16:09:20 +0800 |
---|---|---|
committer | Harry Lu <haip@src.gnome.org> | 2006-01-10 16:09:20 +0800 |
commit | e459ad918e6453c8a0be1415a22311bdeabb06a8 (patch) | |
tree | d4e82e3dc1dfcb3525dd8979c3947dc56435c990 /e-util/e-util.h | |
parent | 0311da7a876b49869ed89579db9813c6199d9f00 (diff) | |
download | gsoc2013-evolution-e459ad918e6453c8a0be1415a22311bdeabb06a8.tar.gz gsoc2013-evolution-e459ad918e6453c8a0be1415a22311bdeabb06a8.tar.zst gsoc2013-evolution-e459ad918e6453c8a0be1415a22311bdeabb06a8.zip |
Delete e_mkdir_hier(), and use e_util_mkdir_hier() instead of it.
2006-01-10 Simon Zheng <simon.zheng@sun.com>
* e-mktemp.c (get_dir):
* e-plugin.c:
* e-util.[ch] (e_create_directory):
(e_sort):
Delete e_mkdir_hier(), and use e_util_mkdir_hier()
instead of it.
Delete e_strstrcasea(), and use e_util_strstrcase()
instead of it.
Delete e_strftime(), use the copy in evolution-data-server/
libedataserver/e-data-server-util.c instead of it.
Delete e_filename_make_safe(), and use the copy in
evolution-data-server/libedataserver/e-data-server-util.c
instead of it.
Detelte e_utf8_strftime(), and use the copy in
evolution-data-server/libedataserver/e-data-server-util.c
instead of it.
svn path=/trunk/; revision=31117
Diffstat (limited to 'e-util/e-util.h')
-rw-r--r-- | e-util/e-util.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/e-util/e-util.h b/e-util/e-util.h index cc0043c7df..b80915f8f0 100644 --- a/e-util/e-util.h +++ b/e-util/e-util.h @@ -156,16 +156,11 @@ int e_write_file (cons int flags); int e_write_file_mkstemp (char *filename, const char *data); -int e_mkdir_hier (const char *path, - mode_t mode); gchar **e_strsplit (const gchar *string, const gchar *delimiter, gint max_tokens); -gchar *e_strstrcase (const gchar *haystack, - const gchar *needle); /* This only makes a filename safe for usage as a filename. It still may have shell meta-characters in it. */ -void e_filename_make_safe (gchar *string); gchar *e_format_number (gint number); gchar *e_format_number_float (gfloat number); gboolean e_create_directory (gchar *directory); @@ -193,20 +188,11 @@ size_t e_strftime_fix_am_pm (char *s, const char *fmt, const struct tm *tm); -size_t e_strftime (char *s, - size_t max, - const char *fmt, - const struct tm *tm); - size_t e_utf8_strftime_fix_am_pm (char *s, size_t max, const char *fmt, const struct tm *tm); -size_t e_utf8_strftime (char *s, - size_t max, - const char *fmt, - const struct tm *tm); /* String to/from double conversion functions */ gdouble e_flexible_strtod (const gchar *nptr, |