1 #ifndef __RC_USE_H
2 # define __RC_USE_H
3 /*!
4 *  \file rc-use.h
5 *  \brief Central function, manages the resource file handling and
6 *  			displays the results file header.
7 */
8 /*
9 *  Copyright (c) 1994, 95, 96, 1997, 2000 Thomas Esken
10 *  Copyright (c) 2010, 2011, 2013 Free Software Foundation, Inc.
11 *
12 *  This software doesn't claim completeness, correctness or usability.
13 *  On principle I will not be liable for ANY damages or losses (implicit
14 *  or explicit), which result from using or handling my software.
15 *  If you use this software, you agree without any exception to this
16 *  agreement, which binds you LEGALLY !!
17 *
18 *  This program is free software; you can redistribute it and/or modify
19 *  it under the terms of the `GNU General Public License' as published by
20 *  the `Free Software Foundation'; either version 3, or (at your option)
21 *  any later version.
22 *
23 *  You should have received a copy of the `GNU General Public License'
24 *  along with this program; if not, write to the:
25 *
26 */
27 
28 
29 
30 /*
31 *  $Id: rc-use.h 3.01 2000/06/14 03:00:01 tom Exp $
32 */
33 
34 
35 
36 /*
37 *  The REGEX stuff.
38 */
39 # if HAVE_POSIX_REGCOMP
40 #  ifdef REG_EXTENDED
41 #   define REGCOMP_FLAG  REG_EXTENDED
42 #  else
43 #   define REGCOMP_FLAG  0
44 #  endif
45 # endif
46 
47 
48 
49 /*
50 *  GLOBAL functions prototypes.
51 */
52 __BEGIN_DECLARATIONS
53 /*
54 *  The REGEX stuff.
55 */
56 # if HAVE_RE_COMP
57 extern char *re_comp ();
58 # endif
59 /*
60 ************************************************** Defined in `rc-use.c'.
61 */
62 extern void rc_use __P_ ((void));
63 __END_DECLARATIONS
64 #endif /* __RC_USE_H */
65