/*
 * Copyright Julian Smith.
 *
 * This file is part of Wild.
 *
 * Wild is free software: you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by the
 * Free Software Foundation, either version 3 of the License, or (at your
 * option) any later version.
 *
 * Wild 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 Lesser General
 * Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with Wild.  If not, see <http://www.gnu.org/licenses/>.
 */
#ifndef __Wild_Replace_h
#define	__Wild_Replace_h

#ifndef __Desk_DeskMem_h
	#include "Desk/DeskMem.h"
#endif

#ifdef __cplusplus
extern "C"	{
#endif


void		Wild_Replace_Replace( Desk_deskmem_buffer* buffer, const char* replace, const char* filename);
void		Wild_Replace_ReplaceCat( Desk_deskmem_buffer* buffer, const char* replace, const char* filename);
const char*	Wild_Replace_HelpString( void);
	// Returns a string containing help on the replace syntax.

#ifdef __cplusplus
}
#endif

#endif
