*/
void
printTableInit(printTableContent *const content, const printTableOpt *opt,
- const char *title, int ncolumns, int nrows)
+ const char *title, const int ncolumns, const int nrows)
{
content->opt = opt;
content->title = title;
*/
void
printTableAddHeader(printTableContent *const content, const char *header,
- bool translate, char align)
+ const bool translate, const char align)
{
#ifndef ENABLE_NLS
(void) translate; /* unused parameter */
*/
void
printTableAddCell(printTableContent *const content, const char *cell,
- bool translate)
+ const bool translate)
{
#ifndef ENABLE_NLS
(void) translate; /* unused parameter */
* printTableInit() again.
*/
void
-printTableCleanup(printTableContent *content)
+printTableCleanup(printTableContent *const content)
{
free(content->headers);
free(content->cells);