Loading...
Searching...
No Matches
fmt_table.h
Go to the documentation of this file.
1/*
2 * Copyright 2019 Otto-von-Guericke-Universität Magdeburg
3 *
4 * This file is subject to the terms and conditions of the GNU Lesser
5 * General Public License v2.1. See the file LICENSE in the top level
6 * directory for more details.
7 */
8
9#pragma once
10
28
29#include <stdint.h>
30#include <stddef.h>
31
32#ifdef __cplusplus
33extern "C" {
34#endif
35
41void print_col_u32_dec(uint32_t number, size_t width);
42
48void print_col_s32_dec(int32_t number, size_t width);
49
50#ifdef __cplusplus
51}
52#endif
53
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.