parser: Remove the unused attribute alignment from struct declaration_specifiers_t.
[cparser] / help.c
1 /*
2  * This file is part of cparser.
3  * Copyright (C) 2012 Matthias Braun <matze@braunis.de>
4  */
5 #include <stdio.h>
6
7 #include "help.h"
8
9 void put_help(const char *option, const char *explanation)
10 {
11         printf("\t%-15s  %s\n", option, explanation);
12 }
13
14 void put_choice(const char *choice, const char *explanation)
15 {
16         printf("\t    %-11s  %s\n", choice, explanation);
17 }