/******************************************************************************
* TinTin++ *
* Copyright (C) 2007 (See CREDITS file) *
* *
* This program is protected under the GNU GPL (See COPYING) *
* *
* 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-1307 USA *
******************************************************************************/
/******************************************************************************
* (T)he K(I)cki(N) (T)ickin D(I)kumud Clie(N)t *
* *
* coded by Igor van den Hoven 2007 *
******************************************************************************/
#include "tintin.h"
char *restring(char *point, char *string)
{
free(point);
return strdup(string);
}
char *refstring(char *point, char *fmt, ...)
{
char string[STRING_SIZE];
va_list args;
va_start(args, fmt);
vsprintf(string, fmt, args);
va_end(args);
if (point)
{
free(point);
}
return strdup(string);
}