diff options
author | Randy Dunlap <rdunlap@infradead.org> | 2024-11-19 22:07:11 -0800 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2024-12-11 09:07:40 -0700 |
commit | 28884915e6b14c9af4ddbb5f89d64edd863494c0 (patch) | |
tree | 3074268d27fae248842ee61a8d91fa085a85ad48 /lib/parser.c | |
parent | bc7509446b456d6649afa60fce9104d169e94de1 (diff) |
Documentation: core-api: add generic parser docbook
Add the simple generic parser to the core-api docbook.
It can be used for parsing all sorts of options throughout the kernel.
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Alexander Viro <viro@zeniv.linux.org.uk>
Cc: Eric Biggers <ebiggers@kernel.org>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: linux-doc@vger.kernel.org
Cc: linux-fsdevel@vger.kernel.org
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Link: https://lore.kernel.org/r/20241120060711.159783-1-rdunlap@infradead.org
Diffstat (limited to 'lib/parser.c')
-rw-r--r-- | lib/parser.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/parser.c b/lib/parser.c index f4eafb9d74e6..73e8f8e5be73 100644 --- a/lib/parser.c +++ b/lib/parser.c @@ -275,8 +275,9 @@ EXPORT_SYMBOL(match_hex); * * Description: Parse the string @str to check if matches wildcard * pattern @pattern. The pattern may contain two types of wildcards: - * '*' - matches zero or more characters - * '?' - matches one character + * + * * '*' - matches zero or more characters + * * '?' - matches one character * * Return: If the @str matches the @pattern, return true, else return false. */ |