summaryrefslogtreecommitdiff
path: root/tools/check-c-style.sh
blob: b8fef94e0124a2c4efdfbe03f5f102fe60048bd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
# Copyright 2006-2022 Collabora Ltd.
# SPDX-License-Identifier: MIT
fail=0

/bin/sh "${top_srcdir}"/tools/check-whitespace.sh "$@" || fail=$?

# at the moment we're not actually checking much C style here... to be added

if test -n "$CHECK_FOR_LONG_LINES"
then
  if egrep -n '.{80,}' "$@"
  then
    echo "^^^ The above files contain long lines"
    fail=1
  fi
fi

exit $fail