cd src
grep -P -n '\t' *.c | grep -v "1:"
cd ../include
grep -P -n '\t' *.h | grep -v "1:"
cd ..
side note: win/Qt/*.cpp are full of tabs
14 lines
386 B
C
14 lines
386 B
C
/* NetHack 3.7 rect.h $NHDT-Date: 1596498557 2020/08/03 23:49:17 $ $NHDT-Branch: NetHack-3.7 $:$NHDT-Revision: 1.9 $ */
|
|
/* Copyright (c) 1990 by Jean-Christophe Collet */
|
|
/* NetHack may be freely redistributed. See license for details. */
|
|
|
|
#ifndef RECT_H
|
|
#define RECT_H
|
|
|
|
typedef struct nhrect {
|
|
coordxy lx, ly;
|
|
coordxy hx, hy;
|
|
} NhRect;
|
|
|
|
#endif /* RECT_H */
|