package ctypes

  1. Overview
  2. Docs
Combinators for binding to C libraries without writing any C

Install

Dune Dependency

Authors

Maintainers

Sources

0.11.3.tar.gz
sha256=683b0215dca7bba797404869a80564cd4901a0a3f3c14bd65be7656c40b2329d
md5=cdad9a9020611ebbeb31a47f299e5e15

doc/ctypes/Signed/index.html

Module Signed

Types and operations for signed integers.

module type S = sig ... end

Signed integer operations

module Int : S with type t = int

Signed integer type and operations.

module Int32 : S with type t = int32

Signed 32-bit integer type and operations.

module Int64 : S with type t = int64

Signed 64-bit integer type and operations.

module SInt : S

C's signed integer type and operations.

module Long : S

The signed long integer type and operations.

module LLong : S

The signed long long integer type and operations.

type sint = SInt.t

C's signed integer type.

type long = Long.t

The signed long integer type.

type llong = LLong.t

The signed long long integer type.

OCaml

Innovation. Community. Security.