remake  4.3+dbg-1.5
function.h
Go to the documentation of this file.
1 /* $Id: function.h,v 1.10 2007/01/04 12:03:20 rockyb Exp $
2 Copyright (C) 1988, 1989, 1991-1997, 1999, 2002, 2004, 2005
3 Free Software Foundation, Inc.
4 Copyright (C) 2005 R. Bernstein <rocky@gnu.org>
5 This file is part of GNU Make (remake variant).
6 
7 GNU Make is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11 
12 GNU Make is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16 
17 You should have received a copy of the GNU General Public License
18 along with GNU Make; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
21 
27 #ifndef FUNCTION_H
28 #define FUNCTION_H
29 
30 #include "make.h"
31 
36 extern void fold_newlines (char *buffer, unsigned int *length);
37 
38 extern void hash_init_function_table (void);
39 
40 extern void hash_free_function_table (void);
41 
47 extern char *strip_whitespace (const char **begpp, const char **endpp);
48 
56 extern char *func_eval (char *o, char **argv, const char *funcname UNUSED);
57 
58 
59 #endif /*FUNCTION_H*/
void hash_init_function_table(void)
char * func_eval(char *o, char **argv, const char *funcname UNUSED)
void hash_free_function_table(void)
char * strip_whitespace(const char **begpp, const char **endpp)
void fold_newlines(char *buffer, unsigned int *length)
#define UNUSED
Definition: makeint.h:229