File: main.h

package info (click to toggle)
exuberant-ctags 1%3A5.7-4
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 1,432 kB
  • ctags: 2,855
  • sloc: ansic: 20,424; makefile: 171; sh: 48
file content (32 lines) | stat: -rw-r--r-- 687 bytes parent folder | download | duplicates (23)
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
/*
*   $Id: main.h 443 2006-05-30 04:37:13Z darren $
*
*   Copyright (c) 1998-2002, Darren Hiebert
*
*   This source code is released for free distribution under the terms of the
*   GNU General Public License.
*
*   External interface to main.c
*/
#ifndef _MAIN_H
#define _MAIN_H

/*
*   INCLUDE FILES
*/
#include "general.h"  /* must always come first */

#include <stdio.h>

#include "vstring.h"

/*
*   FUNCTION PROTOTYPES
*/
extern void addTotals (const unsigned int files, const long unsigned int lines, const long unsigned int bytes);
extern boolean isDestinationStdout (void);
extern int main (int argc, char **argv);

#endif  /* _MAIN_H */

/* vi:set tabstop=4 shiftwidth=4: */