/*
 Written by D'Arcy J.M. Cain
 darcy@druid.net
 Copyright 1994-1997
 
 Do not change this file directly
 
 */
 

#include	"/usr/include/stdio.h"
#ifndef		__CAIN_STDIO_H
#define		__CAIN_STDIO_H
	extern char *	addext(char *fn, const char *ext);
	extern char *	getline(FILE *, char *);
	extern char *	xgetline(FILE *, char *, size_t *);
	extern void *	loadfile(const char *fn, int ftype, long *file_len);
	extern char *	file_lookup(const char *, const char *, int);
	extern char **	get_fdat(const char *fn);
	extern int		bfsearch(const void *key, FILE *fp, void *buf, size_t size,
							int (*compar)(const void *, const void *));
	extern FILE *	sock_open(const char *, const char *);
#endif

