Skip to content

Instantly share code, notes, and snippets.

@gom
Created March 27, 2009 15:12
Show Gist options
  • Save gom/86734 to your computer and use it in GitHub Desktop.
Save gom/86734 to your computer and use it in GitHub Desktop.
ほとんどそのままMac版 http://www.ruby-lang.org/ja/man/html/dl.html
#!/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