mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
include changed from by quotes ("") to by brackets (<>); close #3032
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
#ifndef MRUBY_ARRAY_H
|
||||
#define MRUBY_ARRAY_H
|
||||
|
||||
#include "mruby/common.h"
|
||||
#include <mruby/common.h>
|
||||
|
||||
/*
|
||||
* Array class
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
#ifndef MRUBY_CLASS_H
|
||||
#define MRUBY_CLASS_H
|
||||
|
||||
#include "mruby/common.h"
|
||||
#include <mruby/common.h>
|
||||
|
||||
/**
|
||||
* Class class
|
||||
|
||||
@@ -7,14 +7,14 @@
|
||||
#ifndef MRUBY_COMPILE_H
|
||||
#define MRUBY_COMPILE_H
|
||||
|
||||
#include "mruby/common.h"
|
||||
#include <mruby/common.h>
|
||||
|
||||
/**
|
||||
* MRuby Compiler
|
||||
*/
|
||||
MRB_BEGIN_DECL
|
||||
|
||||
#include "mruby.h"
|
||||
#include <mruby.h>
|
||||
|
||||
struct mrb_jmpbuf;
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
#ifndef MRUBY_DATA_H
|
||||
#define MRUBY_DATA_H
|
||||
|
||||
#include "mruby/common.h"
|
||||
#include <mruby/common.h>
|
||||
|
||||
/**
|
||||
* Custom C wrapped data.
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
#ifndef MRUBY_DEBUG_H
|
||||
#define MRUBY_DEBUG_H
|
||||
|
||||
#include "mruby/common.h"
|
||||
#include <mruby/common.h>
|
||||
|
||||
/**
|
||||
* MRuby Debugging.
|
||||
|
||||
@@ -7,9 +7,9 @@
|
||||
#ifndef MRUBY_DUMP_H
|
||||
#define MRUBY_DUMP_H
|
||||
|
||||
#include "mruby.h"
|
||||
#include "mruby/irep.h"
|
||||
#include "mruby/common.h"
|
||||
#include <mruby.h>
|
||||
#include <mruby/irep.h>
|
||||
#include <mruby/common.h>
|
||||
|
||||
/**
|
||||
* Dumping compiled mruby script.
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
#ifndef MRUBY_ERROR_H
|
||||
#define MRUBY_ERROR_H
|
||||
|
||||
#include "mruby/common.h"
|
||||
#include <mruby/common.h>
|
||||
|
||||
/**
|
||||
* MRuby error handling.
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@
|
||||
#ifndef MRUBY_GC_H
|
||||
#define MRUBY_GC_H
|
||||
|
||||
#include "mruby/common.h"
|
||||
#include <mruby/common.h>
|
||||
|
||||
/**
|
||||
* Uncommon memory management stuffs.
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
#ifndef MRUBY_HASH_H
|
||||
#define MRUBY_HASH_H
|
||||
|
||||
#include "mruby/common.h"
|
||||
#include <mruby/common.h>
|
||||
|
||||
/**
|
||||
* Hash class
|
||||
|
||||
@@ -7,8 +7,8 @@
|
||||
#ifndef MRUBY_IREP_H
|
||||
#define MRUBY_IREP_H
|
||||
|
||||
#include "mruby/common.h"
|
||||
#include "mruby/compile.h"
|
||||
#include <mruby/common.h>
|
||||
#include <mruby/compile.h>
|
||||
|
||||
/**
|
||||
* Compiled mruby scripts.
|
||||
|
||||
@@ -9,8 +9,8 @@
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#include "mruby.h"
|
||||
#include "mruby/common.h"
|
||||
#include <mruby.h>
|
||||
#include <mruby/common.h>
|
||||
|
||||
/**
|
||||
* khash definitions used in mruby's hash table.
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
#ifndef MRUBY_NUMERIC_H
|
||||
#define MRUBY_NUMERIC_H
|
||||
|
||||
#include "mruby/common.h"
|
||||
#include <mruby/common.h>
|
||||
|
||||
/**
|
||||
* Numeric class and it's sub-classes.
|
||||
|
||||
@@ -7,8 +7,8 @@
|
||||
#ifndef MRUBY_PROC_H
|
||||
#define MRUBY_PROC_H
|
||||
|
||||
#include "mruby/common.h"
|
||||
#include "mruby/irep.h"
|
||||
#include <mruby/common.h>
|
||||
#include <mruby/irep.h>
|
||||
|
||||
/**
|
||||
* Proc class
|
||||
@@ -68,7 +68,7 @@ MRB_API mrb_value mrb_proc_cfunc_env_get(mrb_state*, mrb_int);
|
||||
/* old name */
|
||||
#define mrb_cfunc_env_get(mrb, idx) mrb_proc_cfunc_env_get(mrb, idx)
|
||||
|
||||
#include "mruby/khash.h"
|
||||
#include <mruby/khash.h>
|
||||
KHASH_DECLARE(mt, mrb_sym, struct RProc*, TRUE)
|
||||
|
||||
MRB_END_DECL
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
#ifndef MRUBY_RANGE_H
|
||||
#define MRUBY_RANGE_H
|
||||
|
||||
#include "mruby/common.h"
|
||||
#include <mruby/common.h>
|
||||
|
||||
/**
|
||||
* Range class
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
#ifndef MRUBY_STRING_H
|
||||
#define MRUBY_STRING_H
|
||||
|
||||
#include "mruby/common.h"
|
||||
#include <mruby/common.h>
|
||||
|
||||
/**
|
||||
* String class
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
#ifndef MRUBY_VALUE_H
|
||||
#define MRUBY_VALUE_H
|
||||
|
||||
#include "mruby/common.h"
|
||||
#include <mruby/common.h>
|
||||
|
||||
/**
|
||||
* MRuby Value definition functions and macros.
|
||||
@@ -96,7 +96,7 @@ enum mrb_vtype {
|
||||
MRB_TT_MAXDEFINE /* 23 */
|
||||
};
|
||||
|
||||
#include "mruby/object.h"
|
||||
#include <mruby/object.h>
|
||||
|
||||
#ifdef MRB_DOCUMENTATION_BLOCK
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
#ifndef MRUBY_VARIABLE_H
|
||||
#define MRUBY_VARIABLE_H
|
||||
|
||||
#include "mruby/common.h"
|
||||
#include <mruby/common.h>
|
||||
|
||||
/**
|
||||
* Functions to access mruby variables.
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
#ifndef MRUBY_VERSION_H
|
||||
#define MRUBY_VERSION_H
|
||||
|
||||
#include "mruby/common.h"
|
||||
#include <mruby/common.h>
|
||||
|
||||
/**
|
||||
* mruby version definition macros
|
||||
|
||||
Reference in New Issue
Block a user