Loading...
Searching...
No Matches
fmt_table.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2019 Otto-von-Guericke-Universität Magdeburg
3 * SPDX-License-Identifier: LGPL-2.1-only
4 */
5
6#pragma once
7
25
26#include <stdint.h>
27#include <stddef.h>
28
29#ifdef __cplusplus
30extern "C" {
31#endif
32
38void print_col_u32_dec(uint32_t number, size_t width);
39
45void print_col_s32_dec(int32_t number, size_t width);
46
47#ifdef __cplusplus
48}
49#endif
50
void print_col_s32_dec(int32_t number, size_t width)
Print a table column with the given number as decimal.
void print_col_u32_dec(uint32_t number, size_t width)
Print a table column with the given number as decimal.