package frama-c
Install
Dune Dependency
Authors
-
MMichele Alberti
-
TThibaud Antignac
-
GGergö Barany
-
PPatrick Baudin
-
NNicolas Bellec
-
TThibaut Benjamin
-
AAllan Blanchard
-
LLionel Blatter
-
FFrançois Bobot
-
RRichard Bonichon
-
VVincent Botbol
-
QQuentin Bouillaguet
-
DDavid Bühler
-
ZZakaria Chihani
-
SSylvain Chiron
-
LLoïc Correnson
-
JJulien Crétin
-
PPascal Cuoq
-
ZZaynah Dargaye
-
BBasile Desloges
-
JJean-Christophe Filliâtre
-
PPhilippe Herrmann
-
MMaxime Jacquemin
-
BBenjamin Jorge
-
FFlorent Kirchner
-
AAlexander Kogtenkov
-
RRemi Lazarini
-
TTristan Le Gall
-
KKilyan Le Gallic
-
JJean-Christophe Léchenet
-
MMatthieu Lemerre
-
DDara Ly
-
DDavid Maison
-
CClaude Marché
-
AAndré Maroneze
-
TThibault Martin
-
FFonenantsoa Maurica
-
MMelody Méaulle
-
BBenjamin Monate
-
YYannick Moy
-
PPierre Nigron
-
AAnne Pacalet
-
VValentin Perrelle
-
GGuillaume Petiot
-
DDario Pinto
-
VVirgile Prevosto
-
AArmand Puccetti
-
FFélix Ridoux
-
VVirgile Robles
-
JJan Rochel
-
MMuriel Roger
-
CCécile Ruet-Cros
-
JJulien Signoles
-
NNicolas Stouls
-
KKostyantyn Vorobyov
-
BBoris Yakobowski
Maintainers
Sources
sha256=a94384f00d53791cbb4b4d83ab41607bc71962d42461f02d71116c4ff6dca567
doc/frama-c.kernel/Frama_c_kernel/Channel/index.html
Module Frama_c_kernel.Channel
val open_in_bin : string -> input
Open the given file for reading in binary mode, and return a new input channel on that file, positioned at the beginning of the file.
val close_in : input -> unit
Close the given channel.
val input_value : input -> 'a
Read the representation of a structured value, as produced by output_value
, and return the corresponding value.
val input_char : input -> char
Read one character from the given input channel.
val unsafe_really_input : input -> bytes -> int -> int -> unit
unsafe_really_input ic buf pos len
reads len
characters from channel ic
, storing them in byte sequence buf
, starting at character number pos
. The function is unsafe as no verification is done that 0 <= pos
, 0 <= len
or Bytes.length buf > pos + len
.
val open_out_bin : ?compress:bool -> string -> output
Open the given file for writing in binary mode, and return a new output channel on that file, positioned at the beginning of the file. If compress
is true then the content of the file will be compressed by Compression
.
val close_out : output -> unit
Close the given channel.
val output_value : output -> 'a -> unit
Write the representation of a structured value of any type to a channel. The object can be read back by input_value
.