/*
* output.h - declaration for log output functions
* $Id: output.h,v 1.2 2004/06/05 15:15:17 rdenisc Exp $
*/
/***********************************************************************
* Copyright (C) 2002-2003 Remi Denis-Courmont. *
* This program is free software; you can redistribute and/or modify *
* it under the terms of the GNU General Public License as published *
* by the Free Software Foundation; version 2 of the license. *
* *
* 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, you can get it from: *
* http://www.gnu.org/copyleft/gpl.html *
***********************************************************************/
#ifndef __TCPREEN_OUTPUT_H
# define __TCPREEN_OUTPUT_H
# include <stdio.h>
# ifdef __cplusplus
extern "C"
{
#endif
int fwrite_count (const void *buf, int len, FILE *stream);
int fwrite_C (const void *buf, int len, FILE *stream);
int fwrite_hex (const void *buf, int len, FILE *stream);
int fwrite_raw (const void *buf, int len, FILE *stream);
int fwrite_strip (const void *buf, int len, FILE *stream);
# ifdef __cplusplus
}
# endif
#endif /* ifndef __TCPREEN_OUTPUT_H */
syntax highlighted by Code2HTML, v. 0.9.1