Mercurial > audlegacy
annotate src/audacious/strings.h @ 4665:d8a07aa54bef
Merge translations.
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Sun, 29 Jun 2008 00:29:04 -0500 |
parents | 6b76f8589f5d |
children |
rev | line source |
---|---|
2373 | 1 /* Audacious |
2 * Copyright (C) 2005-2007 Audacious development team. | |
3 * | |
4 * BMP - Cross-platform multimedia player | |
5 * Copyright (C) 2003-2004 BMP development team. | |
6 * | |
7 * Based on XMMS: | |
8 * Copyright (C) 1998-2003 XMMS development team. | |
9 * | |
10 * This program is free software; you can redistribute it and/or modify | |
11 * it under the terms of the GNU General Public License as published by | |
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
2385
diff
changeset
|
12 * the Free Software Foundation; under version 3 of the License. |
2373 | 13 * |
14 * This program is distributed in the hope that it will be useful, | |
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 * GNU General Public License for more details. | |
18 * | |
19 * You should have received a copy of the GNU General Public License | |
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
2385
diff
changeset
|
20 * along with this program. If not, see <http://www.gnu.org/licenses>. |
3123
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
21 * |
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
22 * The Audacious team does not consider modular code linking to |
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
23 * Audacious or using our public API to be a derived work. |
2373 | 24 */ |
25 | |
4557
2eee464379dc
Clean up header multiple inclusion guards (e.g. #ifndef FOO_H/#define FOO_H)
Matti Hamalainen <ccr@tnsp.org>
parents:
4407
diff
changeset
|
26 #ifndef AUDACIOUS_STRINGS_H |
2eee464379dc
Clean up header multiple inclusion guards (e.g. #ifndef FOO_H/#define FOO_H)
Matti Hamalainen <ccr@tnsp.org>
parents:
4407
diff
changeset
|
27 #define AUDACIOUS_STRINGS_H |
2373 | 28 |
29 #include <glib.h> | |
30 | |
4407
5a0f5ef1de61
Some stupid header cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents:
4089
diff
changeset
|
31 G_BEGIN_DECLS |
5a0f5ef1de61
Some stupid header cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents:
4089
diff
changeset
|
32 |
2373 | 33 gchar *escape_shell_chars(const gchar * string); |
34 | |
35 gchar *str_append(gchar * str, const gchar * add_str); | |
36 gchar *str_replace(gchar * str, gchar * new_str); | |
37 void str_replace_in(gchar ** str, gchar * new_str); | |
38 | |
39 gboolean str_has_prefix_nocase(const gchar * str, const gchar * prefix); | |
40 gboolean str_has_suffix_nocase(const gchar * str, const gchar * suffix); | |
41 gboolean str_has_suffixes_nocase(const gchar * str, gchar * const *suffixes); | |
42 | |
4606
6b76f8589f5d
Added a temporary function str_assert_utf8() for finding points in code
Matti Hamalainen <ccr@tnsp.org>
parents:
4557
diff
changeset
|
43 gchar *str_assert_utf8(const gchar *str); |
4089
9e24c8746d99
- introduce new API functions uri_to_display_basename() and uri_to_display_dirname(). each function derives utf8 encoded basename or dirname from given uri respectively.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4070
diff
changeset
|
44 gchar *str_to_utf8(const gchar * str); |
2373 | 45 gchar *str_to_utf8_fallback(const gchar * str); |
4089
9e24c8746d99
- introduce new API functions uri_to_display_basename() and uri_to_display_dirname(). each function derives utf8 encoded basename or dirname from given uri respectively.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4070
diff
changeset
|
46 |
2373 | 47 gchar *filename_to_utf8(const gchar * filename); |
4089
9e24c8746d99
- introduce new API functions uri_to_display_basename() and uri_to_display_dirname(). each function derives utf8 encoded basename or dirname from given uri respectively.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4070
diff
changeset
|
48 gchar *uri_to_display_basename(const gchar * uri); |
9e24c8746d99
- introduce new API functions uri_to_display_basename() and uri_to_display_dirname(). each function derives utf8 encoded basename or dirname from given uri respectively.
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
4070
diff
changeset
|
49 gchar *uri_to_display_dirname(const gchar * uri); |
2373 | 50 |
51 const gchar *str_skip_chars(const gchar * str, const gchar * chars); | |
52 | |
53 gchar *convert_title_text(gchar * text); | |
4070
040243a50bd3
- modified playlist_load_ins_file() and playlist_load_ins_file_tuple(). path builder and ext_hash checker
Yoshiki Yazawa <yaz@cc.rim.or.jp>
parents:
3123
diff
changeset
|
54 gchar *convert_dos_path(gchar * text); |
2373 | 55 |
56 gchar *chardet_to_utf8(const gchar *str, gssize len, | |
57 gsize *arg_bytes_read, gsize *arg_bytes_write, | |
58 GError **arg_error); | |
59 | |
4407
5a0f5ef1de61
Some stupid header cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents:
4089
diff
changeset
|
60 G_END_DECLS |
5a0f5ef1de61
Some stupid header cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents:
4089
diff
changeset
|
61 |
4557
2eee464379dc
Clean up header multiple inclusion guards (e.g. #ifndef FOO_H/#define FOO_H)
Matti Hamalainen <ccr@tnsp.org>
parents:
4407
diff
changeset
|
62 #endif /* AUDACIOUS_STRINGS_H */ |