mirror of
https://git.proxmox.com/git/mirror_corosync
synced 2025-05-25 04:08:07 +00:00

git-svn-id: http://svn.fedorahosted.org/svn/corosync/trunk@5 fd59a12c-fef9-0310-b244-a6a79926bd2f
15 lines
360 B
Plaintext
15 lines
360 B
Plaintext
wc -l exec/*.c exec/*.h include/*.h lib/*.c lib/*.h
|
|
|
|
echo "Application Interface Specification Implementation Lines Of Code"
|
|
echo -n "exec LOC "
|
|
cat exec/*.c exec/*.h | wc -l
|
|
|
|
echo -n "lib LOC "
|
|
cat lib/*.c lib/*.h | wc -l
|
|
|
|
echo -n "include LOC "
|
|
cat include/*.h | wc -l
|
|
|
|
echo -n "total LOC "
|
|
cat exec/*.c exec/*.h lib/*.c lib/*.h include/*.h | wc -l
|