libexplain  1.4.D001
Functions
libexplain/buffer/int.c File Reference
#include <libexplain/buffer/int.h>
#include <libexplain/buffer/pointer.h>
#include <libexplain/is_efault.h>

Go to the source code of this file.

Functions

void explain_buffer_int (explain_string_buffer_t *sb, int data)
void explain_buffer_uint (explain_string_buffer_t *sb, unsigned data)
void explain_buffer_uint_star (explain_string_buffer_t *sb, const unsigned *data)

Function Documentation

void explain_buffer_int ( explain_string_buffer_t sb,
int  value 
)

The explain_buffer_int function may be used to print an integer value.

Parameters:
sbThe string buffer to print into.
valueThe value to be printed.

Definition at line 25 of file int.c.

void explain_buffer_uint ( explain_string_buffer_t sb,
unsigned  value 
)

The explain_buffer_int function may be used to print an unsigned integer value.

Parameters:
sbThe string buffer to print into.
valueThe value to be printed.

Definition at line 32 of file int.c.

void explain_buffer_uint_star ( explain_string_buffer_t sb,
const unsigned *  value 
)

The explain_buffer_uint_star function may be used to print an integer value.

Parameters:
sbThe string buffer to print into.
valuea pointer to the value to be printed.

Definition at line 39 of file int.c.