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
9093f340
Commit
9093f340
authored
Jul 15, 2019
by
KOBAYASHI Shuji
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add `MRB_API` to `mrb_str_modify_keep_ascii()`
parent
380805ec
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
include/mruby/string.h
include/mruby/string.h
+2
-1
src/string.c
src/string.c
+1
-1
No files found.
include/mruby/string.h
View file @
9093f340
...
...
@@ -108,6 +108,8 @@ MRB_API mrb_int mrb_str_strlen(mrb_state*, struct RString*);
void
mrb_gc_free_str
(
mrb_state
*
,
struct
RString
*
);
MRB_API
void
mrb_str_modify_keep_ascii
(
mrb_state
*
mrb
,
struct
RString
*
s
);
/*
* Finds the index of a substring in a string
*/
...
...
@@ -453,7 +455,6 @@ mrb_value mrb_str_inspect(mrb_state *mrb, mrb_value str);
mrb_bool
mrb_str_beg_len
(
mrb_int
str_len
,
mrb_int
*
begp
,
mrb_int
*
lenp
);
mrb_value
mrb_str_byte_subseq
(
mrb_state
*
mrb
,
mrb_value
str
,
mrb_int
beg
,
mrb_int
len
);
void
mrb_str_modify_keep_ascii
(
mrb_state
*
mrb
,
struct
RString
*
s
);
MRB_INLINE
void
mrb_str_modify
(
mrb_state
*
mrb
,
struct
RString
*
s
)
...
...
src/string.c
View file @
9093f340
...
...
@@ -706,7 +706,7 @@ mrb_locale_from_utf8(const char *utf8, int len)
}
#endif
void
MRB_API
void
mrb_str_modify_keep_ascii
(
mrb_state
*
mrb
,
struct
RString
*
s
)
{
mrb_check_frozen
(
mrb
,
s
);
...
...
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