Skip to content

Instantly share code, notes, and snippets.

View chewi's full-sized avatar

James Le Cuirot chewi

  • Edinburgh, Scotland
  • 05:54 (UTC +01:00)
View GitHub Profile
@brianmario
brianmario / bzip2.rb
Created June 21, 2013 18:43
[WIP] Simple libbz2 wrapper using FFI
require 'ffi'
module Bzip2
extend FFI::Library
ffi_lib 'bz2'
class Error < StandardError; end
class ConfigError < Error; end
class BufferError < Error; end