00001 /* 00002 Copyright (C) 2003-2004 Douglas Thain and the University of Wisconsin 00003 Copyright (C) 2005- The University of Notre Dame 00004 This software is distributed under a BSD-style license. 00005 See the file COPYING for details. 00006 */ 00007 00008 #ifndef ROTATING_FILE_H 00009 #define ROTATING_FILE_H 00010 00011 #include <stdarg.h> 00012 00013 int rotating_file_vprintf( const char *path, int maxsize, const char *fmt, va_list args ); 00014 int rotating_file_write( const char *path, int maxsize, const char *data, int size ); 00015 00016 #endif