home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_disks
/
300-399
/
ff319.lzh
/
CNewsSrc
/
cnews.src.lzh
/
relay
/
hdrint.h
< prev
next >
Wrap
C/C++ Source or Header
|
1989-06-28
|
1KB
|
47 lines
/*
* definitions internal to the header modules (hdr*.c)
*/
#ifdef REALSTDC
# undef REALSTDC
#endif
#ifdef __STDC__
# if __STDC__ >= 1 /* microsoft, etc. brain-damage */
# define REALSTDC /* truth in advertising: really ANSI */
# endif /* __STDC__ < 1 */
#endif /* __STDC__ */
#ifndef REALSTDC
# ifdef MCH_AMIGA
# define CONST /* const */
# else
# define CONST
# endif
#endif /* REALSTDC */
#ifndef DEFDIST
# define DEFDIST "world" /* default Distribution: */
#endif
#ifndef DEFMSGID
# define DEFMSGID "<message-id@absent>"
#endif
#define JUNK "junk"
#define ALL "all"
#ifdef SLOWCTLMATCH
# define OLDCNTRL "all.all.ctl"
#endif
#define SFXOLDCNTRL ".ctl"
struct hdrdef {
CONST char *hdrnm; /* ascii name */
unsigned hdrlen; /* STRLEN(hdrnm) */
int hdroff; /* offset into struct header */
};
/* typedef CONST struct hdrdef *hdrlist[]; */
extern CONST struct hdrdef pathhdr, xrefhdr;
extern CONST struct hdrdef *parsehdrs[], *hdrvilest[];
extern boolean headdebug;