~kernel/kernel_api.cr
.cr
Crystal
(text/x-crystal)
module KernelAPI
  # Kernel module structure (converted from module.h)
  struct KernelModule
    name : UInt8*      # Module name (null-terminated string)
    init : -> Nil      # Module initialization function
    uninit : -> Nil    # Module cleanup function
  end
end