/*
 * templ.c
 *
 * Source code template generator headerfile
 *
 * Author: Oh Junseon <hollywar@mail.holywar.net>
 * Date  : $Date: 2000/09/12 12:06:15 $ 
 *
 * $Revision: 1.1.1.1 $
 */

/* SCSS/RCS Id */

#define VERSION "0.3"
#define TEMPL_DIR "/usr/local/share/templates" 

#define S_FILE "@FILE@" 
#define S_NAME "@NAME@"
#define S_EMAIL "@EMAIL@"
#define S_DES "@DESCRIPTION@"

extern const char *SEP[] ;
extern const char *NAME[] ;


struct templ_info {
    char author[20] ;
    char email[50] ;
    char description[100] ;
    int filetype ;
    char filename[20] ;
} ;

// Ansi color setting 
// Last 2 digit number selects the color 
// Experiment and let me know if you come up with 
// A better scheme 
#ifdef ANSI_COLOR
    #define WORD_COLOR  "\x1B[0;33m"
    #define TITLE_COLOR  "\x1B[0;35m"
    #define ERROR_COLOR "\x1B[0;31m"
    #define NO_COLOR    "\x1B[0m"
#else
    #define WORD_COLOR  ""
    #define TITLE_COLOR  ""
    #define ERROR_COLOR ""
    #define NO_COLOR    "" 
#endif


/*
 | $Id: templ.h,v 1.1.1.1 2000/09/12 12:06:15 hollywar Exp $
 |
 | Local Variables:
 | mode: c
 | mode: font-lock
 | version-control: t
 | delete-old-versions: t
 | End:
 |
 | -*- End-Of-File -*-
 */



syntax highlighted by Code2HTML, v. 0.9.1