xref: /netbsd-src/external/ibm-public/postfix/dist/mantools/check-spell-cc (revision b0d1725196a7921d003d2c66a14f186abda4176b)
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