Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Libretro
RACE
Commits
fc057217
Commit
fc057217
authored
Sep 20, 2021
by
jdgleaver
Browse files
Replace direct direct file access with VFS routines
parent
e0c56aa7
Pipeline
#53817
passed with stages
in 1 minute and 36 seconds
Changes
38
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
Makefile.common
View file @
fc057217
...
...
@@ -38,6 +38,21 @@ else
$(CORE_DIR)
/cz80_support.c
endif
ifneq
($(STATIC_LINKING), 1)
SOURCES_C
+=
\
$(LIBRETRO_COMM_DIR)
/compat/compat_posix_string.c
\
$(LIBRETRO_COMM_DIR)
/compat/compat_strcasestr.c
\
$(LIBRETRO_COMM_DIR)
/compat/compat_strl.c
\
$(LIBRETRO_COMM_DIR)
/compat/fopen_utf8.c
\
$(LIBRETRO_COMM_DIR)
/encodings/encoding_utf.c
\
$(LIBRETRO_COMM_DIR)
/file/file_path.c
\
$(LIBRETRO_COMM_DIR)
/file/file_path_io.c
\
$(LIBRETRO_COMM_DIR)
/streams/file_stream.c
\
$(LIBRETRO_COMM_DIR)
/streams/file_stream_transforms.c
\
$(LIBRETRO_COMM_DIR)
/string/stdstring.c
\
$(LIBRETRO_COMM_DIR)
/time/rtime.c
\
$(LIBRETRO_COMM_DIR)
/vfs/vfs_implementation.c
endif
FLAGS
+=
-D__LIBRETRO__
-D_MAX_PATH
=
2048
-DHOST_FPS
=
60
ifeq
(,$(findstring msvc,$(platform)))
...
...
flash.c
View file @
fc057217
...
...
@@ -15,6 +15,7 @@
#include <stdio.h>
#include <string.h>
#include <streams/file_stream.h>
#ifdef _WIN32
#include <direct.h>
#else
...
...
@@ -228,20 +229,21 @@ void writeSaveGameFile(void)
{
/* find the dirty blocks and write them to the .NGF file */
int
totalBlocks
=
bootBlockStartNum
+
4
;
RFILE
*
ngfFile
=
NULL
;
int
i
;
FILE
*
ngfFile
;
int
bytes
;
int
64_t
bytes
;
struct
NGFheaderStruct
NGFheader
;
struct
blockStruct
block
;
setupNGFfilename
();
ngfFile
=
fopen
(
ngfFilename
,
"wb"
);
ngfFile
=
filestream_open
(
ngfFilename
,
RETRO_VFS_FILE_ACCESS_WRITE
,
RETRO_VFS_FILE_ACCESS_HINT_NONE
);
if
(
!
ngfFile
)
return
;
NGFheader
.
version
=
0x53
;
NGFheader
.
numBlocks
=
0
;
NGFheader
.
fileLen
=
sizeof
(
struct
NGFheaderStruct
);
...
...
@@ -269,34 +271,32 @@ void writeSaveGameFile(void)
NGFheader
.
fileLen
+=
NGFheader
.
numBlocks
*
sizeof
(
struct
blockStruct
);
bytes
=
f
write
(
&
NGFheader
,
1
,
sizeof
(
struct
NGFheaderStruct
)
,
ngfFile
);
bytes
=
f
ilestream_write
(
ngfFile
,
&
NGFheader
,
sizeof
(
struct
NGFheaderStruct
));
if
(
bytes
!=
sizeof
(
struct
NGFheaderStruct
))
{
fclose
(
ngfFile
);
f
ilestream_
close
(
ngfFile
);
return
;
}
for
(
i
=
0
;
i
<
totalBlocks
;
i
++
)
{
if
(
blocksDirty
[
0
][
i
])
{
block
.
NGPCaddr
=
blockNumToAddr
(
0
,
i
)
+
0x200000
;
block
.
len
=
blockSize
(
i
);
bytes
=
fwrite
(
&
block
,
1
,
sizeof
(
struct
blockStruct
),
ngfFile
);
bytes
=
filestream_write
(
ngfFile
,
&
block
,
sizeof
(
struct
blockStruct
));
if
(
bytes
!=
sizeof
(
struct
blockStruct
))
{
fclose
(
ngfFile
);
f
ilestream_
close
(
ngfFile
);
return
;
}
bytes
=
fwrite
(
&
mainrom
[
blockNumToAddr
(
0
,
i
)],
1
,
blockSize
(
i
),
ngfFile
);
bytes
=
filestream_write
(
ngfFile
,
&
mainrom
[
blockNumToAddr
(
0
,
i
)],
blockSize
(
i
));
if
(
bytes
!=
blockSize
(
i
))
{
fclose
(
ngfFile
);
f
ilestream_
close
(
ngfFile
);
return
;
}
}
...
...
@@ -311,24 +311,25 @@ void writeSaveGameFile(void)
block
.
NGPCaddr
=
blockNumToAddr
(
1
,
i
)
+
0x600000
;
block
.
len
=
blockSize
(
i
);
bytes
=
f
write
(
&
block
,
1
,
sizeof
(
struct
blockStruct
)
,
ngfFile
);
bytes
=
f
ilestream_write
(
ngfFile
,
&
block
,
sizeof
(
struct
blockStruct
));
if
(
bytes
!=
sizeof
(
struct
blockStruct
))
{
fclose
(
ngfFile
);
f
ilestream_
close
(
ngfFile
);
return
;
}
bytes
=
fwrite
(
&
mainrom
[
blockNumToAddr
(
1
,
i
)],
1
,
blockSize
(
i
),
ngfFile
);
bytes
=
filestream_write
(
ngfFile
,
&
mainrom
[
blockNumToAddr
(
1
,
i
)],
blockSize
(
i
));
if
(
bytes
!=
blockSize
(
i
))
{
fclose
(
ngfFile
);
f
ilestream_
close
(
ngfFile
);
return
;
}
}
}
}
fclose
(
ngfFile
);
f
ilestream_
close
(
ngfFile
);
/* char msg[50];
sprintf(msg, "Saved File %s", ngfFilename);
printTTF(msg, 0, 100, yellow, 1, actualScreen, 1);*/
...
...
@@ -345,8 +346,9 @@ void writeSaveGameFile(void)
void
loadSaveGameFile
(
void
)
{
/* find the NGF file and read it in */
FILE
*
ngfFile
;
int
bytes
,
i
;
RFILE
*
ngfFile
=
NULL
;
int64_t
bytes
;
int
i
;
unsigned
char
*
blocks
;
void
*
blockMem
;
struct
NGFheaderStruct
NGFheader
;
...
...
@@ -354,19 +356,19 @@ void loadSaveGameFile(void)
setupNGFfilename
();
ngfFile
=
fopen
(
ngfFilename
,
"rb"
);
ngfFile
=
filestream_open
(
ngfFilename
,
RETRO_VFS_FILE_ACCESS_READ
,
RETRO_VFS_FILE_ACCESS_HINT_NONE
);
if
(
!
ngfFile
)
return
;
bytes
=
fread
(
&
NGFheader
,
1
,
sizeof
(
struct
NGFheaderStruct
),
ngfFile
);
bytes
=
filestream_read
(
ngfFile
,
&
NGFheader
,
sizeof
(
struct
NGFheaderStruct
));
if
(
bytes
!=
sizeof
(
struct
NGFheaderStruct
))
{
fclose
(
ngfFile
);
f
ilestream_
close
(
ngfFile
);
return
;
}
/*
unsigned short version; // always 0x53?
unsigned short numBlocks; // how many blocks are in the file
...
...
@@ -375,7 +377,7 @@ void loadSaveGameFile(void)
if
(
NGFheader
.
version
!=
0x53
)
{
fclose
(
ngfFile
);
f
ilestream_
close
(
ngfFile
);
return
;
}
...
...
@@ -387,8 +389,9 @@ void loadSaveGameFile(void)
blocks
=
(
unsigned
char
*
)
blockMem
;
bytes
=
fread
(
blocks
,
1
,
NGFheader
.
fileLen
-
sizeof
(
struct
NGFheaderStruct
),
ngfFile
);
fclose
(
ngfFile
);
bytes
=
filestream_read
(
ngfFile
,
blocks
,
NGFheader
.
fileLen
-
sizeof
(
struct
NGFheaderStruct
));
filestream_close
(
ngfFile
);
if
(
bytes
!=
(
NGFheader
.
fileLen
-
sizeof
(
struct
NGFheaderStruct
)))
{
...
...
libretro-common/compat/compat_posix_string.c
0 → 100644
View file @
fc057217
/* Copyright (C) 2010-2020 The RetroArch team
*
* ---------------------------------------------------------------------------------------
* The following license statement only applies to this file (compat_posix_string.c).
* ---------------------------------------------------------------------------------------
*
* Permission is hereby granted, free of charge,
* to any person obtaining a copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
* and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include <ctype.h>
#include <compat/posix_string.h>
#ifdef _WIN32
#undef strcasecmp
#undef strdup
#undef isblank
#undef strtok_r
#include <ctype.h>
#include <stdlib.h>
#include <stddef.h>
#include <compat/strl.h>
#include <string.h>
int
retro_strcasecmp__
(
const
char
*
a
,
const
char
*
b
)
{
while
(
*
a
&&
*
b
)
{
int
a_
=
tolower
(
*
a
);
int
b_
=
tolower
(
*
b
);
if
(
a_
!=
b_
)
return
a_
-
b_
;
a
++
;
b
++
;
}
return
tolower
(
*
a
)
-
tolower
(
*
b
);
}
char
*
retro_strdup__
(
const
char
*
orig
)
{
size_t
len
=
strlen
(
orig
)
+
1
;
char
*
ret
=
(
char
*
)
malloc
(
len
);
if
(
!
ret
)
return
NULL
;
strlcpy
(
ret
,
orig
,
len
);
return
ret
;
}
int
retro_isblank__
(
int
c
)
{
return
(
c
==
' '
)
||
(
c
==
'\t'
);
}
char
*
retro_strtok_r__
(
char
*
str
,
const
char
*
delim
,
char
**
saveptr
)
{
char
*
first
=
NULL
;
if
(
!
saveptr
||
!
delim
)
return
NULL
;
if
(
str
)
*
saveptr
=
str
;
do
{
char
*
ptr
=
NULL
;
first
=
*
saveptr
;
while
(
*
first
&&
strchr
(
delim
,
*
first
))
*
first
++
=
'\0'
;
if
(
*
first
==
'\0'
)
return
NULL
;
ptr
=
first
+
1
;
while
(
*
ptr
&&
!
strchr
(
delim
,
*
ptr
))
ptr
++
;
*
saveptr
=
ptr
+
(
*
ptr
?
1
:
0
);
*
ptr
=
'\0'
;
}
while
(
strlen
(
first
)
==
0
);
return
first
;
}
#endif
libretro-common/compat/compat_strcasestr.c
0 → 100644
View file @
fc057217
/* Copyright (C) 2010-2020 The RetroArch team
*
* ---------------------------------------------------------------------------------------
* The following license statement only applies to this file (compat_strcasestr.c).
* ---------------------------------------------------------------------------------------
*
* Permission is hereby granted, free of charge,
* to any person obtaining a copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
* and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include <ctype.h>
#include <compat/strcasestr.h>
/* Pretty much strncasecmp. */
static
int
casencmp
(
const
char
*
a
,
const
char
*
b
,
size_t
n
)
{
size_t
i
;
for
(
i
=
0
;
i
<
n
;
i
++
)
{
int
a_lower
=
tolower
(
a
[
i
]);
int
b_lower
=
tolower
(
b
[
i
]);
if
(
a_lower
!=
b_lower
)
return
a_lower
-
b_lower
;
}
return
0
;
}
char
*
strcasestr_retro__
(
const
char
*
haystack
,
const
char
*
needle
)
{
size_t
i
,
search_off
;
size_t
hay_len
=
strlen
(
haystack
);
size_t
needle_len
=
strlen
(
needle
);
if
(
needle_len
>
hay_len
)
return
NULL
;
search_off
=
hay_len
-
needle_len
;
for
(
i
=
0
;
i
<=
search_off
;
i
++
)
if
(
!
casencmp
(
haystack
+
i
,
needle
,
needle_len
))
return
(
char
*
)
haystack
+
i
;
return
NULL
;
}
libretro-common/compat/compat_strl.c
0 → 100644
View file @
fc057217
/* Copyright (C) 2010-2020 The RetroArch team
*
* ---------------------------------------------------------------------------------------
* The following license statement only applies to this file (compat_strl.c).
* ---------------------------------------------------------------------------------------
*
* Permission is hereby granted, free of charge,
* to any person obtaining a copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
* and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include <stdlib.h>
#include <ctype.h>
#include <compat/strl.h>
/* Implementation of strlcpy()/strlcat() based on OpenBSD. */
#ifndef __MACH__
size_t
strlcpy
(
char
*
dest
,
const
char
*
source
,
size_t
size
)
{
size_t
src_size
=
0
;
size_t
n
=
size
;
if
(
n
)
while
(
--
n
&&
(
*
dest
++
=
*
source
++
))
src_size
++
;
if
(
!
n
)
{
if
(
size
)
*
dest
=
'\0'
;
while
(
*
source
++
)
src_size
++
;
}
return
src_size
;
}
size_t
strlcat
(
char
*
dest
,
const
char
*
source
,
size_t
size
)
{
size_t
len
=
strlen
(
dest
);
dest
+=
len
;
if
(
len
>
size
)
size
=
0
;
else
size
-=
len
;
return
len
+
strlcpy
(
dest
,
source
,
size
);
}
#endif
char
*
strldup
(
const
char
*
s
,
size_t
n
)
{
char
*
dst
=
(
char
*
)
malloc
(
sizeof
(
char
)
*
(
n
+
1
));
strlcpy
(
dst
,
s
,
n
);
return
dst
;
}
libretro-common/compat/fopen_utf8.c
0 → 100644
View file @
fc057217
/* Copyright (C) 2010-2020 The RetroArch team
*
* ---------------------------------------------------------------------------------------
* The following license statement only applies to this file (fopen_utf8.c).
* ---------------------------------------------------------------------------------------
*
* Permission is hereby granted, free of charge,
* to any person obtaining a copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
* and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include <compat/fopen_utf8.h>
#include <encodings/utf.h>
#include <stdio.h>
#include <stdlib.h>
#if defined(_WIN32_WINNT) && _WIN32_WINNT < 0x0500 || defined(_XBOX)
#ifndef LEGACY_WIN32
#define LEGACY_WIN32
#endif
#endif
#ifdef _WIN32
#undef fopen
void
*
fopen_utf8
(
const
char
*
filename
,
const
char
*
mode
)
{
#if defined(LEGACY_WIN32)
FILE
*
ret
=
NULL
;
char
*
filename_local
=
utf8_to_local_string_alloc
(
filename
);
if
(
!
filename_local
)
return
NULL
;
ret
=
fopen
(
filename_local
,
mode
);
if
(
filename_local
)
free
(
filename_local
);
return
ret
;
#else
wchar_t
*
filename_w
=
utf8_to_utf16_string_alloc
(
filename
);
wchar_t
*
mode_w
=
utf8_to_utf16_string_alloc
(
mode
);
FILE
*
ret
=
NULL
;
if
(
filename_w
&&
mode_w
)
ret
=
_wfopen
(
filename_w
,
mode_w
);
if
(
filename_w
)
free
(
filename_w
);
if
(
mode_w
)
free
(
mode_w
);
return
ret
;
#endif
}
#endif
libretro-common/encodings/encoding_utf.c
0 → 100644
View file @
fc057217
/* Copyright (C) 2010-2020 The RetroArch team
*
* ---------------------------------------------------------------------------------------
* The following license statement only applies to this file (encoding_utf.c).
* ---------------------------------------------------------------------------------------
*
* Permission is hereby granted, free of charge,
* to any person obtaining a copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
* and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include <stdint.h>
#include <stdlib.h>
#include <stddef.h>
#include <string.h>
#include <boolean.h>
#include <compat/strl.h>
#include <retro_inline.h>
#include <encodings/utf.h>
#if defined(_WIN32) && !defined(_XBOX)
#include <windows.h>
#elif defined(_XBOX)
#include <xtl.h>
#endif
#define UTF8_WALKBYTE(string) (*((*(string))++))
static
unsigned
leading_ones
(
uint8_t
c
)
{
unsigned
ones
=
0
;
while
(
c
&
0x80
)
{
ones
++
;
c
<<=
1
;
}
return
ones
;
}
/* Simple implementation. Assumes the sequence is
* properly synchronized and terminated. */
size_t
utf8_conv_utf32
(
uint32_t
*
out
,
size_t
out_chars
,
const
char
*
in
,
size_t
in_size
)
{
unsigned
i
;
size_t
ret
=
0
;
while
(
in_size
&&
out_chars
)
{
unsigned
extra
,
shift
;
uint32_t
c
;
uint8_t
first
=
*
in
++
;
unsigned
ones
=
leading_ones
(
first
);
if
(
ones
>
6
||
ones
==
1
)
/* Invalid or desync. */
break
;
extra
=
ones
?
ones
-
1
:
ones
;
if
(
1
+
extra
>
in_size
)
/* Overflow. */
break
;
shift
=
(
extra
-
1
)
*
6
;
c
=
(
first
&
((
1
<<
(
7
-
ones
))
-
1
))
<<
(
6
*
extra
);
for
(
i
=
0
;
i
<
extra
;
i
++
,
in
++
,
shift
-=
6
)
c
|=
(
*
in
&
0x3f
)
<<
shift
;
*
out
++
=
c
;
in_size
-=
1
+
extra
;
out_chars
--
;
ret
++
;
}
return
ret
;
}
bool
utf16_conv_utf8
(
uint8_t
*
out
,
size_t
*
out_chars
,
const
uint16_t
*
in
,
size_t
in_size
)
{
size_t
out_pos
=
0
;
size_t
in_pos
=
0
;
static
const
uint8_t
utf8_limits
[
5
]
=
{
0xC0
,
0xE0
,
0xF0
,
0xF8
,
0xFC
};
for
(;;)
{
unsigned
num_adds
;
uint32_t
value
;
if
(
in_pos
==
in_size
)
{
*
out_chars
=
out_pos
;
return
true
;
}
value
=
in
[
in_pos
++
];
if
(
value
<
0x80
)
{
if
(
out
)
out
[
out_pos
]
=
(
char
)
value
;
out_pos
++
;
continue
;
}
if
(
value
>=
0xD800
&&
value
<
0xE000
)
{
uint32_t
c2
;
if
(
value
>=
0xDC00
||
in_pos
==
in_size
)
break
;
c2
=
in
[
in_pos
++
];
if
(
c2
<
0xDC00
||
c2
>=
0xE000
)
break
;
value
=
(((
value
-
0xD800
)
<<
10
)
|
(
c2
-
0xDC00
))
+
0x10000
;
}
for
(
num_adds
=
1
;
num_adds
<
5
;
num_adds
++
)
if
(
value
<
(((
uint32_t
)
1
)
<<
(
num_adds
*
5
+
6
)))
break
;
if
(
out
)
out
[
out_pos
]
=
(
char
)(
utf8_limits
[
num_adds
-
1
]
+
(
value
>>
(
6
*
num_adds
)));
out_pos
++
;
do