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

Go to the source code of this file.

Functions

void explain_buffer_int64_t (explain_string_buffer_t *sb, int64_t data)
void explain_buffer_int64_array (explain_string_buffer_t *sb, const int64_t *data, size_t data_size)
void explain_buffer_uint64_t (explain_string_buffer_t *sb, uint64_t data)
void explain_buffer_uint64_array (explain_string_buffer_t *sb, const uint64_t *data, size_t data_size)

Function Documentation

void explain_buffer_int64_array ( explain_string_buffer_t sb,
const int64_t *  data,
size_t  data_size 
)

The explain_buffer_int64_array function may be used to print a representation of an array of int64_t values.

Parameters:
sbThe string buffer to print into.
dataThe int64_t array to be printed.
data_sizeThe number of elements in the array to be printed.

Definition at line 32 of file int64_t.c.

void explain_buffer_int64_t ( explain_string_buffer_t sb,
int64_t  data 
)

The explain_buffer_int64_t function may be used to print a representation of a int64_t value.

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

Definition at line 25 of file int64_t.c.

void explain_buffer_uint64_array ( explain_string_buffer_t sb,
const uint64_t *  data,
size_t  data_size 
)

The explain_buffer_uint64_array function may be used to print a representation of an array of uint64_t values.

Parameters:
sbThe string buffer to print into.
dataThe uint64_t array to be printed.
data_sizeThe number of elements in the array to be printed.

Definition at line 62 of file int64_t.c.

void explain_buffer_uint64_t ( explain_string_buffer_t sb,
uint64_t  data 
)

The explain_buffer_uint64_t function may be used to print a representation of a uint64_t value.

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

Definition at line 55 of file int64_t.c.