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
3b904e94
Commit
3b904e94
authored
Aug 21, 2014
by
Tatsuhiko Kubo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Unify include guard styles and header comments.
parent
4d72d65d
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
9 deletions
+15
-9
include/mruby/error.h
include/mruby/error.h
+1
-1
include/mruby/gc.h
include/mruby/gc.h
+1
-1
include/mruby/khash.h
include/mruby/khash.h
+3
-3
include/mruby/opcode.h
include/mruby/opcode.h
+4
-4
include/mruby/version.h
include/mruby/version.h
+6
-0
No files found.
include/mruby/error.h
View file @
3b904e94
/*
** error.h - Exception class
**
mruby/
error.h - Exception class
**
** See Copyright Notice in mruby.h
*/
...
...
include/mruby/gc.h
View file @
3b904e94
/*
** gc.h - garbage collector for mruby
**
mruby/
gc.h - garbage collector for mruby
**
** See Copyright Notice in mruby.h
*/
...
...
include/mruby/khash.h
View file @
3b904e94
...
...
@@ -4,8 +4,8 @@
** See Copyright Notice in mruby.h
*/
#ifndef KHASH_H
#define KHASH_H
#ifndef
MRUBY_
KHASH_H
#define
MRUBY_
KHASH_H
#if defined(__cplusplus)
extern
"C"
{
...
...
@@ -267,4 +267,4 @@ typedef const char *kh_cstr_t;
}
/* extern "C" { */
#endif
#endif
/* KHASH_H */
#endif
/*
MRUBY_
KHASH_H */
include/mruby/opcode.h
View file @
3b904e94
/*
** opcode.h - RiteVM operation codes
**
mruby/
opcode.h - RiteVM operation codes
**
** See Copyright Notice in mruby.h
*/
#ifndef OPCODE_H
#define OPCODE_H
#ifndef
MRUBY_
OPCODE_H
#define
MRUBY_
OPCODE_H
#define MAXARG_Bx (0xffff)
#define MAXARG_sBx (MAXARG_Bx>>1)
/* `sBx' is signed */
...
...
@@ -157,4 +157,4 @@ enum {
#define OP_R_BREAK 1
#define OP_R_RETURN 2
#endif
/* OPCODE_H */
#endif
/*
MRUBY_
OPCODE_H */
include/mruby/version.h
View file @
3b904e94
/*
** mruby/version.h - mruby version definition
**
** See Copyright Notice in mruby.h
*/
#ifndef MRUBY_VERSION_H
#define MRUBY_VERSION_H
...
...
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