Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Stefan Strogin
flac
Commits
cd6bc7c1
Commit
cd6bc7c1
authored
Sep 26, 2004
by
Josh Coalson
Browse files
add Charset_Create_List_UTF8_Only()
parent
b445ebec
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugin_xmms/charset.c
View file @
cd6bc7c1
...
...
@@ -155,6 +155,14 @@ GList *Charset_Create_List (void)
return
list
;
}
GList
*
Charset_Create_List_UTF8_Only
(
void
)
{
GList
*
list
=
NULL
;
list
=
g_list_append
(
list
,
_
(
Charset_Get_Title_From_Name
(
"UTF-8"
)));
return
list
;
}
/*
* Return charset_name from charset_title
...
...
src/plugin_xmms/charset.h
View file @
cd6bc7c1
...
...
@@ -48,6 +48,7 @@ char *convert_from_utf8_to_user(const char *string);
char
*
convert_from_user_to_utf8
(
const
char
*
string
);
GList
*
Charset_Create_List
(
void
);
GList
*
Charset_Create_List_UTF8_Only
(
void
);
gchar
*
Charset_Get_Name_From_Title
(
gchar
*
charset_title
);
gchar
*
Charset_Get_Title_From_Name
(
gchar
*
charset_name
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment