Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
e38d1d27
Commit
e38d1d27
authored
Jun 20, 2018
by
Kouhei Sutou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Export mrb_utf8_from_locale() and mrb_locale_from_utf8()
parent
5e7ced07
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
include/mruby.h
include/mruby.h
+2
-2
No files found.
include/mruby.h
View file @
e38d1d27
...
@@ -994,8 +994,8 @@ MRB_API mrb_value mrb_str_new_static(mrb_state *mrb, const char *p, size_t len);
...
@@ -994,8 +994,8 @@ MRB_API mrb_value mrb_str_new_static(mrb_state *mrb, const char *p, size_t len);
#define mrb_str_new_lit(mrb, lit) mrb_str_new_static(mrb, (lit), mrb_strlen_lit(lit))
#define mrb_str_new_lit(mrb, lit) mrb_str_new_static(mrb, (lit), mrb_strlen_lit(lit))
#ifdef _WIN32
#ifdef _WIN32
char
*
mrb_utf8_from_locale
(
const
char
*
p
,
int
len
);
MRB_API
char
*
mrb_utf8_from_locale
(
const
char
*
p
,
int
len
);
char
*
mrb_locale_from_utf8
(
const
char
*
p
,
int
len
);
MRB_API
char
*
mrb_locale_from_utf8
(
const
char
*
p
,
int
len
);
#define mrb_locale_free(p) free(p)
#define mrb_locale_free(p) free(p)
#define mrb_utf8_free(p) free(p)
#define mrb_utf8_free(p) free(p)
#else
#else
...
...
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