]> granicus.if.org Git - curl/commit
scripts/singleuse: script to use to track single-use functions
authorDaniel Stenberg <daniel@haxx.se>
Fri, 8 Feb 2019 11:08:42 +0000 (12:08 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 11 Feb 2019 07:55:47 +0000 (08:55 +0100)
commite81cd9028f2ef6656df6653dcf7871a5fa081e2e
tree6372fe3b01d9d532e25ae2a1ce681b18d6b9743b
parent05b100aee247bb9bec8e9a1b0166496aa4248d1c
scripts/singleuse: script to use to track single-use functions

That is functions that are declared global but are not used from outside
of the file in which it is declared. Such functions should be made
static or even at times be removed.

It also verifies that all used curl_ prefixed functions are "blessed"

Closes #3538
scripts/singleuse.pl [new file with mode: 0755]