mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 23:30:07 +00:00
1475e2012f
value. * stdio-common/tst-fmemopen2.c (do_test): Avoid fmt string warning if off_t is different rank from size_t. * sysdeps/generic/unwind-dw2.c (extract_cie_info, execute_cfa_program, uw_frame_state_for): Avoid type punning warnings. * sysdeps/generic/unwind-dw2-fde-glibc.c (_Unwind_IteratePhdrCallback): Likewise. * sysdeps/generic/unwind-dw2-fde.c (_Unwind_Find_FDE): Likewise. (binary_search_single_encoding_fdes, binary_search_mixed_encoding_fdes, get_cie_encoding, linear_search_fdes): Don't mix char and unsigned char pointers.
24 lines
600 B
C
24 lines
600 B
C
#include <locale.h>
|
|
#include <time.h>
|
|
#include <stdio.h>
|
|
|
|
static int
|
|
do_test (void)
|
|
{
|
|
if (setlocale (LC_ALL, "vi_VN.TCVN5712-1") == NULL)
|
|
{
|
|
puts ("cannot set locale");
|
|
return 1;
|
|
}
|
|
struct tm tm;
|
|
/* This is November in Vietnamese encoded using TCVN5712-1. */
|
|
static const char s[] = "\
|
|
\x54\x68\xb8\x6e\x67\x20\x6d\xad\xea\x69\x20\x6d\xe9\x74";
|
|
char *r = strptime (s, "%b", &tm);
|
|
printf ("r = %p, r-s = %tu, tm.tm_mon = %d\n", r, r - s, tm.tm_mon);
|
|
return r == NULL || r - s != 14 || tm.tm_mon != 10;
|
|
}
|
|
|
|
#define TEST_FUNCTION do_test ()
|
|
#include "../test-skeleton.c"
|