/* $Id: memfn.h,v 1.1 1994/02/03 04:11:02 tf Exp $ */ #ifndef MEMFN_H #define MEMFN_H #ifndef __P #if defined (__STDC__) || defined(__cplusplus) #define __P(protos) protos #else /* !(__STDC__ || __cplusplus) */ #define __P(protos) () #endif /* __STDC__ || __cplusplus */ #endif /* !__P */ extern char *memand __P( ( char *to, char *from, unsigned n ) ); extern char *memor __P( ( char *to, char *from, unsigned n ) ); extern char *memandnot __P( ( char *to, char *from, unsigned n ) ); extern char *memnot __P( ( char *to, unsigned n ) ); #endif /* !MEMFN_H */