Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
0fd1b747
Commit
0fd1b747
authored
Apr 30, 2008
by
Rémi Denis-Courmont
Browse files
Export ToLocaleDup
parent
b8a4cd33
Changes
3
Hide whitespace changes
Inline
Side-by-side
include/vlc_charset.h
View file @
0fd1b747
...
...
@@ -37,6 +37,7 @@ VLC_EXPORT( void, LocaleFree, ( const char * ) );
VLC_EXPORT
(
char
*
,
FromLocale
,
(
const
char
*
)
);
VLC_EXPORT
(
char
*
,
FromLocaleDup
,
(
const
char
*
)
);
VLC_EXPORT
(
char
*
,
ToLocale
,
(
const
char
*
)
);
VLC_EXPORT
(
char
*
,
ToLocaleDup
,
(
const
char
*
)
);
/* TODO: move all of this to "vlc_fs.h" or something like that */
VLC_EXPORT
(
int
,
utf8_open
,
(
const
char
*
filename
,
int
flags
,
mode_t
mode
)
);
...
...
src/libvlc.sym
View file @
0fd1b747
...
...
@@ -330,6 +330,7 @@ str_format_time
tls_ClientCreate
tls_ClientDelete
ToLocale
ToLocaleDup
unescape_URI
unescape_URI_duplicate
update_Check
...
...
src/text/unicode.c
View file @
0fd1b747
...
...
@@ -226,7 +226,7 @@ char *ToLocale (const char *utf8)
}
static
char
*
ToLocaleDup
(
const
char
*
utf8
)
char
*
ToLocaleDup
(
const
char
*
utf8
)
{
return
locale_dup
(
utf8
,
false
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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