Implementation of the fs_shell for ExFAT.

Change-Id: I93533c746e7b52b2a5e46bf6209f871258d11df0
Reviewed-on: https://review.haiku-os.org/c/haiku/+/10476
Reviewed-by: Muhammad Fawad Shah <[email protected]>
Reviewed-by: Raghav Sharma <[email protected]>
Reviewed-by: Adrien Destugues <[email protected]>
This commit is contained in:
HalonixTheFirst
2026-04-10 12:02:45 +00:00
committed by Adrien Destugues
parent 3fa3499c82
commit a3da1bbe35
20 changed files with 333 additions and 73 deletions
@@ -0,0 +1,34 @@
/*
* Copyright 2014 Jonathan Schleifer <[email protected]>
* Copyright 2014 Haiku, Inc. All rights reserved.
*
* Distributed under the terms of the MIT License.
*
* Authors:
* Jonathan Schleifer, [email protected]
* John Scipione, [email protected]
*/
#ifndef FSSH_CONVERT_UTF_H
#define FSSH_CONVERT_UTF_H
#include "fssh_api_wrapper.h"
#ifdef __cplusplus
extern "C"
{
#endif
ssize_t utf16le_to_utf8(const uint16* source, size_t sourceCodeUnitCount,
char* target, size_t targetLength);
ssize_t utf16be_to_utf8(const uint16* source, size_t sourceCodeUnitCount,
char* target, size_t targetLength);
#ifdef __cplusplus
};
#endif
#endif // CONVERT_UTF_H