Created
March 27, 2009 15:12
-
-
Save gom/86734 to your computer and use it in GitHub Desktop.
ほとんどそのままMac版 http://www.ruby-lang.org/ja/man/html/dl.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'dl/import' | |
module LIBC | |
extend DL::Importable | |
dlload "libc.dylib" | |
extern "int strlen(char *)" | |
end | |
puts LIBC.strlen("hogehoge") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment