Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0
0002 
0003 #include <linux/ctype.h>
0004 #include <linux/string.h>
0005 #include <linux/types.h>
0006 
0007 char *skip_spaces(const char *str)
0008 {
0009     while (isspace(*str))
0010         ++str;
0011     return (char *)str;
0012 }