pkg://XITE-3.3-3.i386.rpm:4505295/
usr/
xite/
include/xite_stdio.h
info downloads
/*
________________________________________________________________
xite_stdio.h
$Id: xite_stdio.h,v 1.10 1997/03/24 10:55:58 svein Exp $
Copyright 1990, Blab, UiO
Image processing lab, Department of Informatics
University of Oslo
E-mail: blab@ifi.uio.no
________________________________________________________________
Permission to use, copy, modify and distribute this software and its
documentation for any purpose and without fee is hereby granted,
provided that this copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in supporting
documentation and that the name of B-lab, Department of Informatics or
University of Oslo not be used in advertising or publicity pertaining
to distribution of the software without specific, written prior permission.
B-LAB DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL B-LAB
BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#ifndef _XITE_STDIO_H_
#define _XITE_STDIO_H_
_XITE_CPLUSPLUS_BEGIN
#include <stdio.h>
#if defined(SunOS) || defined(SunOSSun3) || defined(MSDOS)
# ifndef FUNCPROTO
extern int fflush();
extern int fgetc();
extern int fprintf();
extern int fputs();
extern int fread();
extern int printf();
extern int vfprintf();
extern int vprintf();
# ifndef SYSTEM_V
extern char * sprintf();
extern char * vsprintf();
# else
extern int sprintf();
extern int vsprintf();
# endif
extern int fscanf();
extern int scanf();
extern int sscanf();
extern void perror();
# endif /* FUNCPROTO */
#endif
_XITE_CPLUSPLUS_END
#endif /* _XITE_STDIO_H_ */