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 v5.19-rc2 12 lines 206 B view raw
1// SPDX-License-Identifier: GPL-2.0 2 3#include <linux/ctype.h> 4#include <linux/string.h> 5#include <linux/types.h> 6 7char *skip_spaces(const char *str) 8{ 9 while (isspace(*str)) 10 ++str; 11 return (char *)str; 12}