1CHECK_FOR_UNSAFE_APIS(1U)ser Contributed Perl DocumentatiCoHnECK_FOR_UNSAFE_APIS(1)
2
3
4
6 check_for_unsafe_apis - Finds unsafe APIs
7
9 check_for_unsafe_apis [OPTIONS] File [files...]
10
11 Options:
12 -h full documentation
13
14 File - may be a file or directory.
15
17 -h, --help, --usage
18 Prints out this manual page.
19
20 -r, -R, --recursive
21 Follows child directories.
22
23 -v, --verbose
24 Prints out additional information when searching files.
25
26 -p, --perfile
27 Tells the program to keep per file statistics.
28
29 -f output_format, --format output_format
30 Request the program to output the results in a different
31 format.
32
34 prompt$ check_for_unsafe_apis file.c srcdir
35 This will cause the program to check file.c and all *.c sources
36 files under srcdir for unsafe API calls.
37
38 prompt$ check_for_unsafe_apis -R file.c srcdir
39 This will find all unsafe API calls in file.c and any *.c files
40 found under the srcdir directory tree.
41
43 Traverses specified directory trees and/or files (cwd by default)
44 searching for C source files (*.c), rooting out unsafe API calls.
45
47 Created: October 2008, Bo Berry
48 Last Modified: August 2017, Reini Urban
49
51 Copyright (c) 2008, 2009 by Cisco Systems, Inc.
52 Copyright (c) 2017 Reini Urban
53 All rights reserved.
54
55
56
57perl v5.26.1 2018-03-03 CHECK_FOR_UNSAFE_APIS(1)