aboutsummaryrefslogtreecommitdiff
path: root/nls.h
diff options
context:
space:
mode:
authorJavier <dev.git@javispedro.com>2022-11-27 22:41:15 +0100
committerJavier <dev.git@javispedro.com>2022-11-27 22:41:15 +0100
commitf2a1a9f49d98de0f2d71e8c65bad9379634975d7 (patch)
treeda462fa8e68a093b60994686347838b3f89f79b6 /nls.h
parent544a184a4373fc29ba9d030bd8efb59fb56a28e2 (diff)
downloadvbados-f2a1a9f49d98de0f2d71e8c65bad9379634975d7.tar.gz
vbados-f2a1a9f49d98de0f2d71e8c65bad9379634975d7.zip
refactor to add per-mount options to vbsf
Diffstat (limited to 'nls.h')
-rw-r--r--nls.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/nls.h b/nls.h
index 124b703..5f6ca22 100644
--- a/nls.h
+++ b/nls.h
@@ -50,6 +50,8 @@ static unsigned char nls_toupper( unsigned char c )
return ( c < 0x80 ? c : data.file_upper_case[c - 0x80] );
}
+/** Convert str into uppercase as per current NLS rules.
+ * @return true if str was already uppercase. */
static inline bool nls_uppercase(SHFLSTRING *str)
{
int i;