mirror of
				https://sourceware.org/git/glibc.git
				synced 2025-11-03 20:53:13 +03:00 
			
		
		
		
	* libio/tst-ungetwc2.c (main): Define str const. * include/wchar.h: Add prototypes for __fwprintf and __vfwprintf. * libio/fwprintf.c: Also define __fwprintf. * stdio-common/vfprintf.c [COMPILE_WPRINTF]: Also define __vfwprintf. * argp/argp-fmtstream.c: Handle wide oriented stderr stream. * assert/assert-perr.c: Likewise. * assert/assert.c: Likewise. * gmon/gmon.c: Likewise. * inet/rcmd.c: Likewise. * malloc/obstack.c: Likewise. * misc/err.c: Likewise. * misc/error.c: Likewise. * misc/getpass.c: Likewise. * posix/getopt.c: Likewise. * resolv/res_hconf.c: Likewise. * stdio-common/perror.c: Likewise. * stdio-common/psignal.c: Likewise. * stdlib/fmtmsg.c: Likewise. * sunrpc/auth_unix.c: Likewise. * sunrpc/clnt_perr.c: Likewise. * sunrpc/clnt_tcp.c: Likewise. * sunrpc/clnt_udp.c: Likewise. * sunrpc/clnt_unix.c: Likewise. * sunrpc/svc_simple.c: Likewise. * sunrpc/svc_tcp.c: Likewise. * sunrpc/svc_udp.c: Likewise. * sunrpc/svc_unix.c: Likewise. * sunrpc/xdr.c: Likewise. * sunrpc/xdr_array.c: Likewise. * sunrpc/xdr_rec.c: Likewise. * sunrpc/xdr_ref.c: Likewise. * sysdeps/generic/wordexp.c: Likewise. * misc/err.c: Handle wide oriented stderr stream.
		
			
				
	
	
		
			82 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			82 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/* Taken from the Li18nux base test suite.  */
 | 
						|
 | 
						|
#define _XOPEN_SOURCE 500
 | 
						|
#include <locale.h>
 | 
						|
#include <stdio.h>
 | 
						|
#include <stdlib.h>
 | 
						|
#include <unistd.h>
 | 
						|
#include <wchar.h>
 | 
						|
 | 
						|
int
 | 
						|
main (void)
 | 
						|
{
 | 
						|
  FILE *fp;
 | 
						|
  const char *str = "abcdef";
 | 
						|
  wint_t ret, wc;
 | 
						|
  char fname[] = "/tmp/tst-ungetwc2.out.XXXXXX";
 | 
						|
  int fd;
 | 
						|
  long int pos;
 | 
						|
  int result = 0;
 | 
						|
 | 
						|
  puts ("This program runs on de_DE.UTF-8 locale.");
 | 
						|
  if (setlocale (LC_ALL, "de_DE.UTF-8") == NULL)
 | 
						|
    {
 | 
						|
      fprintf (stderr, "Err: Cannot run on the de_DE.UTF-8 locale\n");
 | 
						|
      exit (EXIT_FAILURE);
 | 
						|
    }
 | 
						|
 | 
						|
  /* Write some characters to `testfile'. */
 | 
						|
  fd = mkstemp (fname);
 | 
						|
  if (fd == -1)
 | 
						|
    {
 | 
						|
      printf ("cannot open temp file: %m\n");
 | 
						|
      exit (EXIT_FAILURE);
 | 
						|
    }
 | 
						|
  if ((fp = fdopen (fd, "w")) == NULL)
 | 
						|
    {
 | 
						|
      fprintf (stderr, "Cannot open 'testfile'.\n");
 | 
						|
      exit (EXIT_FAILURE);
 | 
						|
    }
 | 
						|
  fputs (str, fp);
 | 
						|
  fclose (fp);
 | 
						|
 | 
						|
  /* Open `testfile'. */
 | 
						|
  if ((fp = fopen (fname, "r")) == NULL)
 | 
						|
    {
 | 
						|
      fprintf (stderr, "Cannot open 'testfile'.");
 | 
						|
      exit (EXIT_FAILURE);
 | 
						|
    }
 | 
						|
 | 
						|
  /* Get a character. */
 | 
						|
  wc = getwc (fp);
 | 
						|
  pos = ftell (fp);
 | 
						|
  printf ("After get a character: %ld\n", pos);
 | 
						|
  if (pos != 1)
 | 
						|
    result = 1;
 | 
						|
 | 
						|
  /* Unget a character. */
 | 
						|
  ret = ungetwc (wc, fp);
 | 
						|
  if (ret == WEOF)
 | 
						|
    {
 | 
						|
      fprintf (stderr, "ungetwc() returns NULL.");
 | 
						|
      exit (EXIT_FAILURE);
 | 
						|
    }
 | 
						|
  pos = ftell (fp);
 | 
						|
  printf ("After unget a character: %ld\n", pos);
 | 
						|
  if (pos != 0)
 | 
						|
    result = 1;
 | 
						|
 | 
						|
  /* Reget a character. */
 | 
						|
  wc = getwc (fp);
 | 
						|
  pos = ftell (fp);
 | 
						|
  printf ("After reget a character: %ld\n", pos);
 | 
						|
  if (pos != 1)
 | 
						|
    result = 1;
 | 
						|
 | 
						|
  fclose (fp);
 | 
						|
 | 
						|
  unlink (fname);
 | 
						|
 | 
						|
  return result;
 | 
						|
}
 |