// SPDX-License-Identifier: GPL-2.0 #include #include #include char *skip_spaces(const char *str) { while (isspace(*str)) ++str; return (char *)str; }