summaryrefslogtreecommitdiff
path: root/include/linux/string.h
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@gmail.com>2018-06-01 17:17:16 -0400
committerKent Overstreet <kent.overstreet@gmail.com>2018-06-01 17:33:19 -0400
commitbb6f4111fbfe2550eb7b583586e732a473ba62f0 (patch)
tree72f01b9dbeaba544efb75016309c0da6839913ae /include/linux/string.h
parentd7bfc55d236363c7f9d2edee7437202497e462b5 (diff)
Update bcachefs sources to 9abf628c70 bcachefs: Fix a spurious error in fsck
Diffstat (limited to 'include/linux/string.h')
-rw-r--r--include/linux/string.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/string.h b/include/linux/string.h
index abc191e7..ec35b8df 100644
--- a/include/linux/string.h
+++ b/include/linux/string.h
@@ -9,6 +9,7 @@ extern size_t strlcpy(char *dest, const char *src, size_t size);
extern char *skip_spaces(const char *);
extern char *strim(char *);
extern void memzero_explicit(void *, size_t);
+int match_string(const char * const *, size_t, const char *);
#define kstrndup(s, n, gfp) strndup(s, n)