]> git.draconx.ca Git - cdecl99.git/blob - tests/decl-good.at
5b8b9a661f9c385ee9870d2c2aec1d7606d03c1d
[cdecl99.git] / tests / decl-good.at
1 # Copyright © 2020 Nick Bowler
2 #
3 # This program is free software: you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation, either version 3 of the License, or
6 # (at your option) any later version.
7 #
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 # GNU General Public License for more details.
12 #
13 # You should have received a copy of the GNU General Public License
14 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
15
16 AT_BANNER([C declarations])
17
18 m4_define([CHECK_DECL],
19 [AT_DATA([expout], [[$2]m4_newline])
20 AT_CHECK([cdecl99 -e 'explain $1'], [0], [expout])])
21
22 m4_define([SIMPLE_DECL],
23 [AT_SETUP([$1])
24 CHECK_DECL([$1], [$2])
25 AT_CLEANUP])
26
27 SIMPLE_DECL([int (x*)], [type function (pointer to x) returning int])