Source
1
+
// SPDX-License-Identifier: GPL-2.0-only
1
2
/*
2
3
* lib/parser.c - simple parser for mount, etc. options.
3
-
*
4
-
* This source code is licensed under the GNU General Public License,
5
-
* Version 2. See the file COPYING for more details.
6
4
*/
7
5
8
6
#include <linux/ctype.h>
9
7
#include <linux/types.h>
10
8
#include <linux/export.h>
11
9
#include <linux/parser.h>
12
10
#include <linux/slab.h>
13
11
#include <linux/string.h>
14
12
15
13
/**