Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
frama-c
Commits
470eb7d8
Commit
470eb7d8
authored
9 years ago
by
Kostyantyn Vorobyov
Browse files
Options
Downloads
Patches
Plain Diff
[RTL] Doxygen-style comments for e_acsl_printf.h
parent
738e149d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/plugins/e-acsl/share/e-acsl/e_acsl_printf.h
+34
-31
34 additions, 31 deletions
src/plugins/e-acsl/share/e-acsl/e_acsl_printf.h
with
34 additions
and
31 deletions
src/plugins/e-acsl/share/e-acsl/e_acsl_printf.h
+
34
−
31
View file @
470eb7d8
...
...
@@ -33,6 +33,39 @@
/* */
/****************************************************************************/
/*! ***********************************************************************
* \file e_acsl_printf.h
* \brief Malloc and stdio free implementation printf.
*
* Supported format strings:
* - Flag characters:
* - 0 - the following value will be is zero-padded.
*
* - Field width:
* - Optional positive decimal integer following flag characters.
*
* - Length modifier:
* - l - the following integer conversion corresponds to a long int or
* unsigned long int argument.
*
* - Standard conversion specifiers:
* - d - signed integers.
* - u - unsigned integers.
* - f - floating point numbers. Floating point numbers do not support
* - precision specification.
* - x,X - hexadecimal numbers.
* - p - void pointers.
*
* - Non-standard conversion specifiers:
* - a - memory-address.
* - b, B - print field width bits of a number left-to-right (b) or
* right-to-left (B). Unless specified field-width of 8 is used. Bits
* over a 64-bit boundary are ignored.
* - v, V - print first field width bits of a memory region given by a
* void pointer left-to-right (v) or right-to-left (V). Unless specified
* field-width of 8 is used.
***************************************************************************/
#ifndef E_ACSL_PRINTF
#define E_ACSL_PRINTF
...
...
@@ -49,37 +82,7 @@
# include <linux/limits.h>
#endif
/* Malloc/stdio free printf
*
* NOTE: The below implementation does not require system-wide I/O (stdio.h).
*
* Supported format strings:
* - Flag characters:
* 0 - the following value will be is zero-padded.
*
* - Field width:
* Optional positive decimal integer following flag characters.
*
* - Length modifier:
* l - the following integer conversion corresponds to a long int or
* unsigned long int argument.
*
* - Standard conversion specifiers:
* d - signed integers.
* u - unsigned integers.
* f - floating point numbers. Floating point numbers do not support
* precision specification.
* x,X - hexadecimal numbers.
* p - void pointers.
*
* - Non-standard conversion specifiers:
* a - memory-address.
* b, B - print field width bits of a number left-to-right (b) or
* right-to-left (B). Unless specified field-width of 8 is used. Bits
* over a 64-bit boundary are ignored.
* v, V - print first field width bits of a memory region given by a
* void pointer left-to-right (v) or right-to-left (V). Unless specified
* field-width of 8 is used. */
/* ****************** */
/* Public API */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment