Deleted Added
sdiff udiff text old ( 290532 ) new ( 291178 )
full compact
1/*-
2 * Copyright (c) 2002 Tim J. Robbins
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 19 unchanged lines hidden (view full) ---

28 * Test program for mbstowcs(), as specified by IEEE Std. 1003.1-2001 and
29 * ISO/IEC 9899:1999.
30 *
31 * The function is tested with both the "C" ("POSIX") LC_CTYPE setting and
32 * "ja_JP.eucJP". Other encodings are not tested.
33 */
34
35#include <sys/cdefs.h>
36__FBSDID("$FreeBSD: head/lib/libc/tests/locale/mbstowcs_test.c 290532 2015-11-08 02:06:17Z ngie $");
37
38#include <errno.h>
39#include <limits.h>
40#include <locale.h>
41#include <stdio.h>
42#include <stdlib.h>
43#include <string.h>
44#include <wchar.h>

--- 67 unchanged lines hidden ---