mirror of
https://github.com/weechat/weechat.git
synced 2026-07-09 03:03:12 +02:00
core: remove "const" for first argument of function utf8_normalize
This commit is contained in:
+1
-1
@@ -134,7 +134,7 @@ utf8_is_valid (const char *string, char **error)
|
||||
*/
|
||||
|
||||
void
|
||||
utf8_normalize (const char *string, char replacement)
|
||||
utf8_normalize (char *string, char replacement)
|
||||
{
|
||||
char *error;
|
||||
|
||||
|
||||
+1
-1
@@ -35,7 +35,7 @@ extern int local_utf8;
|
||||
extern void utf8_init ();
|
||||
extern int utf8_has_8bits (const char *string);
|
||||
extern int utf8_is_valid (const char *string, char **error);
|
||||
extern void utf8_normalize (const char *string, char replacement);
|
||||
extern void utf8_normalize (char *string, char replacement);
|
||||
extern char *utf8_prev_char (const char *string_start, const char *string);
|
||||
extern char *utf8_next_char (const char *string);
|
||||
extern int utf8_char_int (const char *string);
|
||||
|
||||
Reference in New Issue
Block a user