Subversion Repositories MK3Mag

Rev

Rev 58 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
58 killagreg 1
#ifndef _PRINTF_P_H_
2
#define _PRINTF_P_H_
3
 
4
#include <avr/pgmspace.h>
5
 
72 killagreg 6
// function pointer to external callback put character function
7
typedef void (*pVoidFnctChar) (char );
58 killagreg 8
 
72 killagreg 9
void _printf_P (pVoidFnctChar pPutchar, char const *fmt0, ...);
58 killagreg 10
 
72 killagreg 11
#endif //_PRINTF_P_H_