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
-
LLoïc Correnson
-
JJulien Crétin
-
PPascal Cuoq
-
ZZaynah Dargaye
-
BBasile Desloges
-
JJean-Christophe Filliâtre
-
PPhilippe Herrmann
-
MMaxime Jacquemin
-
FFlorent Kirchner
-
AAlexander Kogtenkov
-
RRemi Lazarini
-
TTristan Le Gall
-
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
-
JJulien Signoles
-
NNicolas Stouls
-
KKostyantyn Vorobyov
-
BBoris Yakobowski
Maintainers
Sources
sha256=d2fbb3b8d0ff83945872e9e6fa258e934a706360e698dae3b4d5f971addf7493
doc/frama-c-e-acsl.core/E_ACSL/Functions/Libc/index.html
Module Functions.Libc
Given the name of C library function return true if there is a drop-in replacement function for it in the RTL.
Given the name of C library function return the name of the RTL function that potentially replaces it.
val is_memcpy : Frama_c_kernel.Cil_types.exp -> bool
Return true
if exp
captures a function name that matches memcpy
or an equivalent function
val is_memset : Frama_c_kernel.Cil_types.exp -> bool
Return true
if exp
captures a function name that matches memset
or an equivalent function
val is_vla_free : Frama_c_kernel.Cil_types.exp -> bool
Return true
if exp
captures a function name that matches a function that allocates memory for a variable-size array.
Return true
if string
captures a function name that matches a function that deallocates memory for a variable-size array.
val get_printf_argument_str :
loc:Frama_c_kernel.Cil_types.location ->
string ->
Frama_c_kernel.Cil_types.exp list ->
Frama_c_kernel.Cil_types.exp
Given the name of a printf-like function and the list of its variadic arguments return a literal string expression where each character describes the type of an argument from a list. Such characters are also called abbreviated types. Conversion between abbreviated and C types characters is as follows:
- "b" ->
_Bool
- "c" ->
signed char
- "C" ->
unsigned char
- "d" ->
int
- "D" ->
unsigned int
- "h" ->
short
- "H" ->
unsigned short
- "l" ->
long
- "L" ->
unsigned long
- "r" ->
long long
- "R" ->
unsigned long long
- "f" ->
float
- "e" ->
double
- "E" ->
long double
- "s" ->
char*
- "i" ->
int*
- "p" ->
void*