aboutsummaryrefslogtreecommitdiffstats
path: root/AUTHORS
blob: 28fed3ad7e9bcfb48ba2b97bcbc3f2593fbf5448 (plain)
1
2
3
4
5
# $Id$
# $URL$

Sorry, there is no AUTHORS anymore.
Go to http://lcd4linux.bulix.org for a list of developers an contributors.
ld } /* Literal.Number.Integer.Long */
#! /bin/bash

# -kr    Use Kernighan & Ritchie coding style.
# -l120  Set maximum line length for non-comment lines to 150.

rm *.c~ *.h~
indent -kr -l120 *.c *.h

for i in *.c *.h; do
  if !(diff -q $i $i~); then
    rm $i~
  else
    mv $i~ $i
  fi
done