[F] Fixed compilation warnings
This commit is contained in:
parent
3e961b053a
commit
29e928e369
32
lib/fort.c
32
lib/fort.c
@ -102,7 +102,6 @@ enum str_buf_type {
|
|||||||
#ifdef FT_HAVE_UTF8
|
#ifdef FT_HAVE_UTF8
|
||||||
UTF8_BUF,
|
UTF8_BUF,
|
||||||
#endif /* FT_HAVE_WCHAR */
|
#endif /* FT_HAVE_WCHAR */
|
||||||
TYPE_END
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@ -3010,7 +3009,7 @@ int ft_table_wwrite_ln(ft_table_t *table, size_t rows, size_t cols, const wchar_
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
static
|
static
|
||||||
const char * empty_str_arr[] = {"", (const char *)L""};
|
const char *empty_str_arr[] = {"", (const char *)L"", ""};
|
||||||
|
|
||||||
static
|
static
|
||||||
const char *ft_to_string_impl(const ft_table_t *table, enum str_buf_type b_type)
|
const char *ft_to_string_impl(const ft_table_t *table, enum str_buf_type b_type)
|
||||||
@ -3575,6 +3574,7 @@ size_t number_of_columns_in_format_wstring(const wchar_t *fmt)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/*
|
||||||
#if defined(FT_HAVE_UTF8)
|
#if defined(FT_HAVE_UTF8)
|
||||||
FT_INTERNAL
|
FT_INTERNAL
|
||||||
size_t number_of_columns_in_format_u8string(const void *fmt)
|
size_t number_of_columns_in_format_u8string(const void *fmt)
|
||||||
@ -3592,6 +3592,7 @@ size_t number_of_columns_in_format_u8string(const void *fmt)
|
|||||||
return separator_counter + 1;
|
return separator_counter + 1;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
*/
|
||||||
|
|
||||||
static
|
static
|
||||||
int snprint_n_strings_impl(char *buf, size_t length, size_t n, const char *str)
|
int snprint_n_strings_impl(char *buf, size_t length, size_t n, const char *str)
|
||||||
@ -5756,14 +5757,6 @@ static ptrdiff_t wcs_iter_width(const wchar_t *beg, const wchar_t *end)
|
|||||||
}
|
}
|
||||||
#endif /* FT_HAVE_WCHAR */
|
#endif /* FT_HAVE_WCHAR */
|
||||||
|
|
||||||
//#ifdef FT_HAVE_UTF8
|
|
||||||
//static ptrdiff_t u8_iter_width(const void *beg, const void *end)
|
|
||||||
//{
|
|
||||||
// assert(end >= beg);
|
|
||||||
// return ut8_width(beg, end);
|
|
||||||
//}
|
|
||||||
//#endif /* FT_HAVE_UTF8 */
|
|
||||||
|
|
||||||
|
|
||||||
static size_t buf_str_len(const string_buffer_t *buf)
|
static size_t buf_str_len(const string_buffer_t *buf)
|
||||||
{
|
{
|
||||||
@ -6227,7 +6220,7 @@ size_t buffer_text_visible_width(const string_buffer_t *buffer)
|
|||||||
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
buffer_substring(const string_buffer_t *buffer, size_t buffer_row, void **begin, void **end, ptrdiff_t *str_it_width)
|
buffer_substring(const string_buffer_t *buffer, size_t buffer_row, const void **begin, const void **end, ptrdiff_t *str_it_width)
|
||||||
{
|
{
|
||||||
switch (buffer->type) {
|
switch (buffer->type) {
|
||||||
case CHAR_BUF:
|
case CHAR_BUF:
|
||||||
@ -6322,7 +6315,7 @@ int buffer_printf(string_buffer_t *buffer, size_t buffer_row, conv_context_t *cn
|
|||||||
ptrdiff_t str_it_width = 0;
|
ptrdiff_t str_it_width = 0;
|
||||||
const void *beg = NULL;
|
const void *beg = NULL;
|
||||||
const void *end = NULL;
|
const void *end = NULL;
|
||||||
buffer_substring(buffer, buffer_row, (void **)&beg, (void **)&end, &str_it_width);
|
buffer_substring(buffer, buffer_row, &beg, &end, &str_it_width);
|
||||||
if (beg == NULL || end == NULL)
|
if (beg == NULL || end == NULL)
|
||||||
return -1;
|
return -1;
|
||||||
if (str_it_width < 0 || content_width < (size_t)str_it_width)
|
if (str_it_width < 0 || content_width < (size_t)str_it_width)
|
||||||
@ -6346,12 +6339,21 @@ FT_INTERNAL
|
|||||||
size_t string_buffer_width_capacity(const string_buffer_t *buffer)
|
size_t string_buffer_width_capacity(const string_buffer_t *buffer)
|
||||||
{
|
{
|
||||||
assert(buffer);
|
assert(buffer);
|
||||||
if (buffer->type == CHAR_BUF)
|
switch (buffer->type) {
|
||||||
|
case CHAR_BUF:
|
||||||
return buffer->data_sz;
|
return buffer->data_sz;
|
||||||
else if (buffer->type == W_CHAR_BUF)
|
#ifdef FT_HAVE_WCHAR
|
||||||
|
case W_CHAR_BUF:
|
||||||
return buffer->data_sz / sizeof(wchar_t);
|
return buffer->data_sz / sizeof(wchar_t);
|
||||||
else if (buffer->type == UTF8_BUF)
|
#endif
|
||||||
|
#ifdef FT_HAVE_UTF8
|
||||||
|
case UTF8_BUF:
|
||||||
return buffer->data_sz / 4;
|
return buffer->data_sz / 4;
|
||||||
|
#endif
|
||||||
|
default:
|
||||||
|
assert(0);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -172,6 +172,7 @@ size_t number_of_columns_in_format_wstring(const wchar_t *fmt)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/*
|
||||||
#if defined(FT_HAVE_UTF8)
|
#if defined(FT_HAVE_UTF8)
|
||||||
FT_INTERNAL
|
FT_INTERNAL
|
||||||
size_t number_of_columns_in_format_u8string(const void *fmt)
|
size_t number_of_columns_in_format_u8string(const void *fmt)
|
||||||
@ -189,6 +190,7 @@ size_t number_of_columns_in_format_u8string(const void *fmt)
|
|||||||
return separator_counter + 1;
|
return separator_counter + 1;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
*/
|
||||||
|
|
||||||
static
|
static
|
||||||
int snprint_n_strings_impl(char *buf, size_t length, size_t n, const char *str)
|
int snprint_n_strings_impl(char *buf, size_t length, size_t n, const char *str)
|
||||||
|
@ -65,7 +65,6 @@ enum str_buf_type {
|
|||||||
#ifdef FT_HAVE_UTF8
|
#ifdef FT_HAVE_UTF8
|
||||||
UTF8_BUF,
|
UTF8_BUF,
|
||||||
#endif /* FT_HAVE_WCHAR */
|
#endif /* FT_HAVE_WCHAR */
|
||||||
TYPE_END
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -488,7 +488,7 @@ size_t buffer_text_visible_width(const string_buffer_t *buffer)
|
|||||||
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
buffer_substring(const string_buffer_t *buffer, size_t buffer_row, void **begin, void **end, ptrdiff_t *str_it_width)
|
buffer_substring(const string_buffer_t *buffer, size_t buffer_row, const void **begin, const void **end, ptrdiff_t *str_it_width)
|
||||||
{
|
{
|
||||||
switch (buffer->type) {
|
switch (buffer->type) {
|
||||||
case CHAR_BUF:
|
case CHAR_BUF:
|
||||||
@ -583,7 +583,7 @@ int buffer_printf(string_buffer_t *buffer, size_t buffer_row, conv_context_t *cn
|
|||||||
ptrdiff_t str_it_width = 0;
|
ptrdiff_t str_it_width = 0;
|
||||||
const void *beg = NULL;
|
const void *beg = NULL;
|
||||||
const void *end = NULL;
|
const void *end = NULL;
|
||||||
buffer_substring(buffer, buffer_row, (void **)&beg, (void **)&end, &str_it_width);
|
buffer_substring(buffer, buffer_row, &beg, &end, &str_it_width);
|
||||||
if (beg == NULL || end == NULL)
|
if (beg == NULL || end == NULL)
|
||||||
return -1;
|
return -1;
|
||||||
if (str_it_width < 0 || content_width < (size_t)str_it_width)
|
if (str_it_width < 0 || content_width < (size_t)str_it_width)
|
||||||
@ -607,12 +607,21 @@ FT_INTERNAL
|
|||||||
size_t string_buffer_width_capacity(const string_buffer_t *buffer)
|
size_t string_buffer_width_capacity(const string_buffer_t *buffer)
|
||||||
{
|
{
|
||||||
assert(buffer);
|
assert(buffer);
|
||||||
if (buffer->type == CHAR_BUF)
|
switch (buffer->type) {
|
||||||
|
case CHAR_BUF:
|
||||||
return buffer->data_sz;
|
return buffer->data_sz;
|
||||||
else if (buffer->type == W_CHAR_BUF)
|
#ifdef FT_HAVE_WCHAR
|
||||||
|
case W_CHAR_BUF:
|
||||||
return buffer->data_sz / sizeof(wchar_t);
|
return buffer->data_sz / sizeof(wchar_t);
|
||||||
else if (buffer->type == UTF8_BUF)
|
#endif
|
||||||
|
#ifdef FT_HAVE_UTF8
|
||||||
|
case UTF8_BUF:
|
||||||
return buffer->data_sz / 4;
|
return buffer->data_sz / 4;
|
||||||
|
#endif
|
||||||
|
default:
|
||||||
|
assert(0);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -612,7 +612,7 @@ static void test_print_n_strings_(const char *str, size_t n)
|
|||||||
cntx.raw_avail = 200;
|
cntx.raw_avail = 200;
|
||||||
cntx.b_type = CHAR_BUF;
|
cntx.b_type = CHAR_BUF;
|
||||||
assert_true(print_n_strings(&cntx, n, str) == sz);
|
assert_true(print_n_strings(&cntx, n, str) == sz);
|
||||||
assert_true(cntx.buf - cntx.buf_origin == sz);
|
assert_true(cntx.buf - cntx.buf_origin == (ptrdiff_t)sz);
|
||||||
destroy_string_buffer(buffer);
|
destroy_string_buffer(buffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -624,7 +624,7 @@ static void test_print_n_strings_(const char *str, size_t n)
|
|||||||
cntx.raw_avail = 200;
|
cntx.raw_avail = 200;
|
||||||
cntx.b_type = W_CHAR_BUF;
|
cntx.b_type = W_CHAR_BUF;
|
||||||
assert_true(print_n_strings(&cntx, n, str) == /*sizeof(wchar_t) **/ sz);
|
assert_true(print_n_strings(&cntx, n, str) == /*sizeof(wchar_t) **/ sz);
|
||||||
assert_true(cntx.buf - cntx.buf_origin == sizeof(wchar_t) * sz);
|
assert_true(cntx.buf - cntx.buf_origin == (ptrdiff_t)sizeof(wchar_t) * sz);
|
||||||
destroy_string_buffer(buffer);
|
destroy_string_buffer(buffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -637,7 +637,7 @@ static void test_print_n_strings_(const char *str, size_t n)
|
|||||||
cntx.raw_avail = 200;
|
cntx.raw_avail = 200;
|
||||||
cntx.b_type = UTF8_BUF;
|
cntx.b_type = UTF8_BUF;
|
||||||
assert_true(print_n_strings(&cntx, n, str) == sz);
|
assert_true(print_n_strings(&cntx, n, str) == sz);
|
||||||
assert_true(cntx.buf - cntx.buf_origin == sz);
|
assert_true(cntx.buf - cntx.buf_origin == (ptrdiff_t)sz);
|
||||||
destroy_string_buffer(buffer);
|
destroy_string_buffer(buffer);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user