00001 /* 00002 * $Id$ 00003 * 00004 * Copyright (C) 2010 Daniel-Constantin Mierla (asipto.com) 00005 * 00006 * Permission to use, copy, modify, and distribute this software for any 00007 * purpose with or without fee is hereby granted, provided that the above 00008 * copyright notice and this permission notice appear in all copies. 00009 * 00010 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 00011 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 00012 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 00013 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 00014 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 00015 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 00016 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 00017 */ 00018 /* 00019 * ppcfg.h - config preprocessor directives 00020 */ 00021 00022 #ifndef _PPCFG_H_ 00023 #define _PPCFG_H_ 00024 00025 int pp_subst_add(char *data); 00026 int pp_substdef_add(char *data, int mode); 00027 int pp_subst_run(char **data); 00028 00029 int pp_define(int len, const char *text); 00030 int pp_define_set(int len, char *text); 00031 int pp_define_set_type(int type); 00032 00033 #endif /*_PPCFG_H_*/ 00034 00035 /* vi: set ts=4 sw=4 tw=79:ai:cindent: */
1.7.1