ack/lang/cem/libcc.ansi/stdlib/mbtowc.c

19 lines
414 B
C
Raw Normal View History

1989-05-16 13:13:53 +00:00
/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
/* $Header$ */
#include <stdlib.h>
#include <limits.h>
int
1989-12-18 15:14:14 +00:00
mbtowc(wchar_t *pwc, register const char *s, size_t n)
1989-05-16 13:13:53 +00:00
{
1989-12-18 15:14:14 +00:00
if (s == (const char *)NULL) return 0;
if (*s == '\0') return 0;
if (n <= 0) return 0;
if (pwc) *pwc = *s;
return (*s != 0);
1989-05-16 13:13:53 +00:00
}