CoolElvis/gt06_server

View on GitHub
lib/libcrc16.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

require 'ffi'

module GetCrc16
  extend FFI::Library
  ffi_lib 'lib/libcrc_16.so'

  attach_function :get_crc16, [:string, :int], :int
end