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 | grep -F -vxf proto/stop | grep -F -vxf proto/stop.spell-cc
9