xref: /netbsd-src/external/ibm-public/postfix/dist/mantools/check-spell-cc (revision 901e7e84758515fbf39dfc064cb0b45ab146d8b0)
1#!/bin/sh
2
3# Spellchecks comments in C source code. See mantools/comment.c for
4# 'comment' source code.
5
6LANG=C; export LANG
7
8find . -name *.[hc] | xargs cat | comment | mantools/deroff | spell | fgrep -vxf proto/stop | fgrep -vxf proto/stop.spell-cc
9