11 lines
253 B
Bash
11 lines
253 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
# Copyright (C) The libssh2 project and its contributors.
|
||
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
||
|
|
|
||
|
|
set -e
|
||
|
|
|
||
|
|
cd "$(dirname "$0")/.."
|
||
|
|
|
||
|
|
git ls-files "*.[ch]" | xargs -n1 \
|
||
|
|
./ci/checksrc.pl -i4 -m79 -AFOPENMODE -ASNPRINTF -ATYPEDEFSTRUCT
|