Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.1-rc5 12 lines 300 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2 3struct script_file { 4 char *dir; 5 char *file; 6 char *desc; 7}; 8 9/* List available script tests to run - singleton - never freed */ 10const struct script_file *list_script_files(void); 11/* Get maximum width of description string */ 12int list_script_max_width(void);