2002-05-29 16:42:56 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 by Felix Arends
|
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* 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.
|
2002-05-29 16:42:56 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2010-05-06 21:04:40 +00:00
|
|
|
#ifndef __FORMAT_H__
|
|
|
|
#define __FORMAT_H__
|
2002-05-29 16:42:56 +00:00
|
|
|
|
2010-09-20 08:55:45 +00:00
|
|
|
void format(
|
2010-05-06 21:04:40 +00:00
|
|
|
/* call 'push()' for each output letter */
|
|
|
|
int (*push)(void *userp, unsigned char data),
|
|
|
|
void *userp,
|
|
|
|
const char *fmt,
|
|
|
|
va_list ap);
|
2002-05-29 16:42:56 +00:00
|
|
|
|
2009-11-03 21:20:09 +00:00
|
|
|
/* callback function is called for every output character (byte) with userp and
|
|
|
|
* should return 0 when ch is a char other than '\0' that should stop printing */
|
2010-09-20 08:55:45 +00:00
|
|
|
void vuprintf(int (*push)(void *userp, unsigned char data),
|
2009-11-03 21:20:09 +00:00
|
|
|
void *userp, const char *fmt, va_list ap);
|
2009-08-21 22:54:23 +00:00
|
|
|
|
2010-05-06 21:04:40 +00:00
|
|
|
#endif /* __FORMAT_H__ */
|