This is a port of the mruby/c tutorial Chapter 03 to the mbed environment.

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers c_hash.h Source File

c_hash.h

Go to the documentation of this file.
00001 /*! @file
00002   @brief
00003 
00004 
00005   <pre>
00006   Copyright (C) 2015 Kyushu Institute of Technology.
00007   Copyright (C) 2015 Shimane IT Open-Innovation Center.
00008 
00009   This file is distributed under BSD 3-Clause License.
00010 
00011 
00012   </pre>
00013 */
00014 
00015 #ifndef MRBC_SRC_C_HASH_H_
00016 #define MRBC_SRC_C_HASH_H_
00017 
00018 #include "vm.h"
00019 
00020 #ifdef __cplusplus
00021 extern "C" {
00022 #endif
00023 
00024 
00025 void mrbc_init_class_hash(mrb_vm *vm);
00026 
00027 
00028 #ifdef __cplusplus
00029 }
00030 #endif
00031 #endif
00032