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
|
/*
* cook - file construction tool
* Copyright (C) 1994, 1997 Peter Miller;
* All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
*
* MANIFEST: interface definition for make2cook/variable.c
*/
#ifndef MAKE2COOK_VARIABLE_H
#define MAKE2COOK_VARIABLE_H
#include <blob.h>
#include <str_list.h>
/*
* These are the flags bits for the last argument to variable_rename and
* variable_rename_list. Add them together to combine them.
*/
#define VAREN_NO_FLAGS 0 /* nothing special */
#define VAREN_QUOTE_SPACES 1 /* spaces need to be quoted */
#define VAREN_KNOW_ARCHIVE 2 /* archive names like a(b) to be translated */
#define VAREN_NO_QUOQUO 4 /* don't quote doutes */
void variable_rename _((blob_ty *, blob_list_ty *, string_list_ty *, int));
void variable_rename_list _((blob_list_ty *, blob_list_ty *, string_list_ty *, int));
void variable_archive _((string_ty *target, string_ty *member));
/* for use by vargram */
int vargram_lex _((void));
void vargram_error _((char *));
void vargram_result _((string_ty *));
string_ty *vargram_lookup _((string_ty *));
void vargram_forget _((string_ty *));
void vargram_trace _((char *, ...));
void vargram_trace2 _((void *, char *, ...));
#endif /* MAKE2COOK_VARIABLE_H */
|