xref: /netbsd-src/external/ibm-public/postfix/dist/mantools/check-double-cc (revision 059c16a85b0b39d60ad6d18f53c09510815afa2b)
14a672054Schristos#!/bin/sh
24a672054Schristos
34a672054Schristos# Finds double words in C comments. See mantools/comment.c for 'comment'
44a672054Schristos# source code.
54a672054Schristos
64a672054SchristosLANG=C; export LANG
74a672054Schristos
8*059c16a8Schristosfind src -name '*.[hc]' | xargs cat | comment | mantools/deroff | mantools/find-double | grep -F -vxf proto/stop.double-cc
9