
/*
 *	FCACHE.H
 *
 *	$Header: RCS/fcache.h,v 1.2 91/09/08 16:21:18 glass Exp Locker: glass $
 */

#ifndef FcacheIncluded
#define FcacheIncluded 1 /* include once only */

typedef char *  ((*func_ptr)());

typedef struct
{
	func_ptr func;
	int typlen;
	int nargs;
	int typbyval;
	ObjectId foid;
}
FunctionCache, *FunctionCachePtr;

#endif FcacheIncluded
