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
64b0e48d
Commit
64b0e48d
authored
Jun 05, 2014
by
cremno
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mruby-struct: use correct data types
parent
0249e7dd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
13 deletions
+12
-13
mrbgems/mruby-struct/src/struct.c
mrbgems/mruby-struct/src/struct.c
+12
-13
No files found.
mrbgems/mruby-struct/src/struct.c
View file @
64b0e48d
...
@@ -149,7 +149,7 @@ static mrb_value mrb_struct_ref9(mrb_state* mrb, mrb_value obj) {return RSTRUCT_
...
@@ -149,7 +149,7 @@ static mrb_value mrb_struct_ref9(mrb_state* mrb, mrb_value obj) {return RSTRUCT_
#define numberof(array) (int)(sizeof(array) / sizeof((array)[0]))
#define numberof(array) (int)(sizeof(array) / sizeof((array)[0]))
#define N_REF_FUNC numberof(ref_func)
#define N_REF_FUNC numberof(ref_func)
static
mrb_value
(
*
const
ref_func
[])(
mrb_state
*
,
mrb_value
)
=
{
static
const
mrb_func_t
ref_func
[]
=
{
mrb_struct_ref0
,
mrb_struct_ref0
,
mrb_struct_ref1
,
mrb_struct_ref1
,
mrb_struct_ref2
,
mrb_struct_ref2
,
...
@@ -185,8 +185,7 @@ static mrb_value
...
@@ -185,8 +185,7 @@ static mrb_value
mrb_struct_set
(
mrb_state
*
mrb
,
mrb_value
obj
,
mrb_value
val
)
mrb_struct_set
(
mrb_state
*
mrb
,
mrb_value
obj
,
mrb_value
val
)
{
{
const
char
*
name
;
const
char
*
name
;
size_t
i
,
len
;
mrb_int
i
,
len
,
slen
;
mrb_int
slen
;
mrb_sym
mid
;
mrb_sym
mid
;
mrb_value
members
,
slot
,
*
ptr
,
*
ptr_members
;
mrb_value
members
,
slot
,
*
ptr
,
*
ptr_members
;
...
@@ -219,17 +218,17 @@ mrb_struct_set_m(mrb_state *mrb, mrb_value obj)
...
@@ -219,17 +218,17 @@ mrb_struct_set_m(mrb_state *mrb, mrb_value obj)
#define is_notop_id(id) (id)
/* ((id)>tLAST_TOKEN) */
#define is_notop_id(id) (id)
/* ((id)>tLAST_TOKEN) */
#define is_local_id(id) (is_notop_id(id))
/* &&((id)&ID_SCOPE_MASK)==ID_LOCAL) */
#define is_local_id(id) (is_notop_id(id))
/* &&((id)&ID_SCOPE_MASK)==ID_LOCAL) */
static
int
static
mrb_bool
mrb_is_local_id
(
mrb_sym
id
)
mrb_is_local_id
(
mrb_sym
id
)
{
{
return
is_local_id
(
id
);
return
!!
is_local_id
(
id
);
}
}
#define is_const_id(id) (is_notop_id(id))
/* &&((id)&ID_SCOPE_MASK)==ID_CONST) */
#define is_const_id(id) (is_notop_id(id))
/* &&((id)&ID_SCOPE_MASK)==ID_CONST) */
static
int
static
mrb_bool
mrb_is_const_id
(
mrb_sym
id
)
mrb_is_const_id
(
mrb_sym
id
)
{
{
return
is_const_id
(
id
);
return
!!
is_const_id
(
id
);
}
}
static
mrb_value
static
mrb_value
...
@@ -344,7 +343,7 @@ mrb_struct_s_def(mrb_state *mrb, mrb_value klass)
...
@@ -344,7 +343,7 @@ mrb_struct_s_def(mrb_state *mrb, mrb_value klass)
{
{
mrb_value
name
,
rest
;
mrb_value
name
,
rest
;
mrb_value
*
pargv
;
mrb_value
*
pargv
;
int
argcnt
;
mrb_
int
argcnt
;
mrb_int
i
;
mrb_int
i
;
mrb_value
b
,
st
;
mrb_value
b
,
st
;
mrb_sym
id
;
mrb_sym
id
;
...
@@ -391,7 +390,7 @@ mrb_struct_s_def(mrb_state *mrb, mrb_value klass)
...
@@ -391,7 +390,7 @@ mrb_struct_s_def(mrb_state *mrb, mrb_value klass)
return
st
;
return
st
;
}
}
static
int
static
mrb_
int
num_members
(
mrb_state
*
mrb
,
struct
RClass
*
klass
)
num_members
(
mrb_state
*
mrb
,
struct
RClass
*
klass
)
{
{
mrb_value
members
;
mrb_value
members
;
...
@@ -407,10 +406,10 @@ num_members(mrb_state *mrb, struct RClass *klass)
...
@@ -407,10 +406,10 @@ num_members(mrb_state *mrb, struct RClass *klass)
/*
/*
*/
*/
static
mrb_value
static
mrb_value
mrb_struct_initialize_withArg
(
mrb_state
*
mrb
,
int
argc
,
mrb_value
*
argv
,
mrb_value
self
)
mrb_struct_initialize_withArg
(
mrb_state
*
mrb
,
mrb_
int
argc
,
mrb_value
*
argv
,
mrb_value
self
)
{
{
struct
RClass
*
klass
=
mrb_obj_class
(
mrb
,
self
);
struct
RClass
*
klass
=
mrb_obj_class
(
mrb
,
self
);
int
i
,
n
;
mrb_
int
i
,
n
;
n
=
num_members
(
mrb
,
klass
);
n
=
num_members
(
mrb
,
klass
);
if
(
n
<
argc
)
{
if
(
n
<
argc
)
{
...
@@ -443,7 +442,7 @@ mrb_struct_initialize(mrb_state *mrb, mrb_value self, mrb_value values)
...
@@ -443,7 +442,7 @@ mrb_struct_initialize(mrb_state *mrb, mrb_value self, mrb_value values)
}
}
static
mrb_value
static
mrb_value
inspect_struct
(
mrb_state
*
mrb
,
mrb_value
s
,
int
recur
)
inspect_struct
(
mrb_state
*
mrb
,
mrb_value
s
,
mrb_bool
recur
)
{
{
const
char
*
cn
=
mrb_class_name
(
mrb
,
mrb_obj_class
(
mrb
,
s
));
const
char
*
cn
=
mrb_class_name
(
mrb
,
mrb_obj_class
(
mrb
,
s
));
mrb_value
members
,
str
=
mrb_str_new_lit
(
mrb
,
"#<struct "
);
mrb_value
members
,
str
=
mrb_str_new_lit
(
mrb
,
"#<struct "
);
...
@@ -501,7 +500,7 @@ inspect_struct(mrb_state *mrb, mrb_value s, int recur)
...
@@ -501,7 +500,7 @@ inspect_struct(mrb_state *mrb, mrb_value s, int recur)
static
mrb_value
static
mrb_value
mrb_struct_inspect
(
mrb_state
*
mrb
,
mrb_value
s
)
mrb_struct_inspect
(
mrb_state
*
mrb
,
mrb_value
s
)
{
{
return
inspect_struct
(
mrb
,
s
,
0
);
return
inspect_struct
(
mrb
,
s
,
FALSE
);
}
}
/* 15.2.18.4.9 */
/* 15.2.18.4.9 */
...
...
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