/* x.h */ /* %Src=x.h %Dir=\rltraynh/c/stuff/ %Date=92/10/15-2:28pm */ /* Support for: */ #ifndef XXX_H #define XXX_H 1 /* What the above line does is to make sure that we don't | load this file TWICE - thus giving errors | by creating a PRE-PROCESSOR varaible with the same | name as the file, it makes it easy to track. | | Thus, the ENTIRE file is NOT processed if XXX_H already | exists. +-------------------------------------------------------------*/ /* notice how i do my multi-line comments !! - years of practice, young paduin learner; years of practice ! */ /* those comments - that AREN'T properly closed cause MORE probs.... oig!! */ /*********************************************************** | XXX - | +--------------------------------------------------------*/ /*@PAGE*/ /*********************************************************** | | | +--------------------------------------------------------*/ /*@PAGE*/ /*********************************************************** | | | +--------------------------------------------------------*/ /*------------------------------------------------ Function prototypes -----*/ void Init_XXX (void); #endif /* ifndef XXX_H */