diff options
author | romankoshelev <romankoshelev@yandex-team.com> | 2023-08-09 20:07:20 +0300 |
---|---|---|
committer | romankoshelev <romankoshelev@yandex-team.com> | 2023-08-09 20:59:13 +0300 |
commit | fd82fb12fb45e71a02c628e45b12c50c0dd0d308 (patch) | |
tree | f582b79f9002ab1d083e9acda600dfb3551c47b6 /contrib/libs/icu/io/ufile.h | |
parent | bf862ddf5c6178e1bb5e4fb3f7c61015deebe284 (diff) | |
download | ydb-fd82fb12fb45e71a02c628e45b12c50c0dd0d308.tar.gz |
Update ICU to 70.1
Diffstat (limited to 'contrib/libs/icu/io/ufile.h')
-rw-r--r-- | contrib/libs/icu/io/ufile.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/libs/icu/io/ufile.h b/contrib/libs/icu/io/ufile.h index e85208fcd3..88fa40911e 100644 --- a/contrib/libs/icu/io/ufile.h +++ b/contrib/libs/icu/io/ufile.h @@ -74,7 +74,7 @@ struct UFILE { UChar fUCBuffer[UFILE_UCHARBUFFER_SIZE];/* buffer used for toUnicode */ - UBool fOwnFile; /* TRUE if fFile should be closed */ + UBool fOwnFile; /* true if fFile should be closed */ int32_t fFileno; /* File number. Useful to determine if it's stdin. */ }; @@ -100,7 +100,7 @@ ufile_fill_uchar_buffer(UFILE *f); * Get one code unit and detect whether the end of file has been reached. * @param f The UFILE containing the characters. * @param ch The read in character - * @return TRUE if the character is valid, or FALSE when EOF has been detected + * @return true if the character is valid, or false when EOF has been detected */ U_CFUNC UBool U_EXPORT2 ufile_getch(UFILE *f, UChar *ch); @@ -109,7 +109,7 @@ ufile_getch(UFILE *f, UChar *ch); * Get one character and detect whether the end of file has been reached. * @param f The UFILE containing the characters. * @param ch The read in character - * @return TRUE if the character is valid, or FALSE when EOF has been detected + * @return true if the character is valid, or false when EOF has been detected */ U_CFUNC UBool U_EXPORT2 ufile_getch32(UFILE *f, UChar32 *ch); |