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
27#ifndef FMT_TABLE_H
28#define FMT_TABLE_H
29
30#include <stdint.h>
31#include <stddef.h>
32
33#ifdef __cplusplus
34extern "C" {
35#endif
36
42void print_col_u32_dec(uint32_t number, size_t width);
43
49void print_col_s32_dec(int32_t number, size_t width);
50
51#ifdef __cplusplus
52}
53#endif
54
56#endif /* FMT_TABLE_H */
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.