/*
 * $Copyright:	$
 * Copyright (c) 1984, 1985, 1986, 1987, 1988, 1989, 1990 
 * Sequent Computer Systems, Inc.   All rights reserved.
 *  
 * This software is furnished under a license and may be used
 * only in accordance with the terms of that license and with the
 * inclusion of the above copyright notice.   This software may not
 * be provided or otherwise made available to, or used by, any
 * other person.  No title to or ownership of the software is
 * hereby transferred.
 */
/*LINTLIBRARY*/
#ident "$Header: llib-lw 1.1 90/03/02 $"
#include <widec.h>
#include <euc.h>
#include <stdio.h>

/* GETWC(3W) */
wchar_t	fgetwc(s) FILE *s; { return ((wchar_t)0); }

/* GETWIDTH(3W) */
void	getwidth(e) eucwidth_t *e; { return; }

/* GETWS(3W) */
wchar_t	*getws(w) wchar_t *w; { return(s); }
wchar_t	*fgetws(w,n,s) wchar_t *w; int n; FILE *s; { return(w); }

/* PRINTF(3W) */
/*VARARGS1*/
int	printf(f) char *f; { return(0); }
/*VARARGS2*/
int	fprintf(s,f) FILE *s; char *f; { return(0); }
/*VARARGS2*/
int	sprintf(s,f) char *s, *f; { return(0); }

/* PUTWC(3W) */
wchar_t	putwc(w,s) wchar_t w; FILE *s; { return (w); }

/* PUTWS(3W) */
int	putws(w) wchar_t *w; { return(0); }
int	fputws(w,s) wchar_t *w; FILE *s; { return(0); }

/* SCANF(3W) */
/*VARARGS1*/
int scanf(f) char *f; { return(0); }
/*VARARGS2*/
int fscanf(s,f) FILE *s; char *f; { return(0); }
/*VARARGS2*/
int sscanf(s,f) char *s, *f; { return(0); }

/* UNGETWC(3W) */
wchar_t ungetwc(w,s) wchar_t w; FILE *s; { return(w); }

/* WCONV(3W) */
wchar_t	towupper(w) wchar_t w; { return(w); }
wchar_t	towlower(w) wchar_t w; { return(w); }

/* WCTYPE(3W) */
unsigned int	_iswctype(w,n) wchar_t w; int n; { return(0); }

/* WSTRING(3W) */
wchar_t	*wscat(w1,w2) wchar_t *w1, *w2; { return(w1); }
wchar_t	*wsncat(w1,w2,n) wchar_t *w1, *w2; int n; { return(w1); }
int	*wscmp(w1,w2) wchar_t *w1, *w2; { return(0); }
int	*wsncmp(w1,w2,n) wchar_t *w1, *w2; int n; { return(0); }
wchar_t	*wscpy(w1,w2) wchar_t *w1, *w2; { return(w1); }
wchar_t	*wsncpy(w1,w2,n) wchar_t *w1, *w2; int n; { return(w1); }
int	*wslen(w) wchar_t *w; { return(0); }
wchar_t	*wschr(w,n) wchar_t *w; int n; { return(w); }
wchar_t	*wsrchr(w,n) wchar_t *w; int n; { return(w); }
wchar_t	*wspbrk(w1,w2) wchar_t *w1, *w2; { return(w1); }
int	*wsspn(w1,w2) wchar_t *w1,*w2; { return(0); }
int	*wscspn(w1,w2) wchar_t *w1,*w2; { return(0); }
wchar_t	*wstok(w1,w2) wchar_t *w1, *w2; { return(w1); }
char	*wstostr(s,w) char *s; wchar_t *w; { return(s); }
wchar_t	*strtows(w,s) wchar_t *w; char *s; { return(w); }
