summaryrefslogtreecommitdiff
path: root/scripts/singleuse.pl
Commit message (Collapse)AuthorAgeFilesLines
* scripts: fix typosDaniel Gustafsson2019-03-311-1/+1
|
* memdebug: make debug-specific functions use curl_dbg_ prefixDaniel Stenberg2019-03-081-16/+3
| | | | | | | To not "collide" or use up the regular curl_ name space. Also makes them easier to detect in helper scripts. Closes #3656
* scripts/singleuse: script to use to track single-use functionsDaniel Stenberg2019-02-111-0/+223
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