File: template.h

package info (click to toggle)
vtprint 2.0.2-15
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 488 kB
  • sloc: ansic: 1,587; sed: 733; makefile: 292; sh: 96
file content (58 lines) | stat: -rw-r--r-- 3,290 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/**************************************************************************
 **************************************************************************
 **                                                                      **
 ** template.c      Template C header file                               **
 ** ==========                                                           **
 **                                                                      **
 ** Purpose:        Serves as a template C header file.                  **
 **                                                                      **
 ** Author:         Garrett D'Amore <garrett@sciences.sdsu.edu>          **
 **                                                                      **
 ** Copyright:      1994, Garrett E. D'Amore                             **
 **                                                                      **
 ** NO WARRANTY:    This program is provided entirely without warranty.  **
 **                 The user assumes full responsibility for the use of  **
 **                 this program, and agrees to indemnify the author and **
 **                 the copyright holder from any damage or loss that    **
 **                 may result from the use of or inability to use this  **
 **                 program.  In simple language: YOU USE THIS PROGRAM   **
 **                 AT YOUR OWN RISK!                                    **
 **                                                                      **
 ** Warning:        None.                                                **
 **                                                                      **
 ** Usage:          This line only belongs in files containing main().   **
 **                                                                      **
 ** Restrictions:   Tabs are set every 4 spaces.                         **
 **                                                                      **
 ** Algorithm:      None.                                                **
 **                                                                      **
 ** References:     Steve Oualline, "C Elements of Style", 1992          **
 **                                                                      **
 ** File formats:   None.                                                **
 **                                                                      **
 ** Rev. History:   June 2, 1994    Garrett D'Amore                      **
 **                 -- Initial coding.                                   **
 **                                                                      **
 ** Notes:          None.                                                **
 **                                                                      **
 **************************************************************************
 **************************************************************************/

#ifndef TEMPLATE_H
#define TEMPLATE_H

/* >>>>>>>>>> Headers <<<<<<<<<< */

/* >>>>>>>>>> Defines <<<<<<<<<< */

/* >>>>>>>>>> Types <<<<<<<<<< */

/* >>>>>>>>>> Variables <<<<<<<<<< */

/* >>>>>>>>>> Prototypes <<<<<<<<<< */

/* >>>>>>>>>> Functions <<<<<<<<<< */

/* >>>>>>>>>> Main <<<<<<<<<< */

#endif /* TEMPLATE_H */