Subversion Repositories NaviCtrl

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 ingob 1
#ifndef _PRINTF_P_H_
2
#define _PRINTF_P_H_
3
 
203 killagreg 4
// function pointer to external callback put character function
5
typedef void (*pVoidFnctChar) (char );
1 ingob 6
 
203 killagreg 7
void _printf_P (pVoidFnctChar pPutchar, char const *fmt0, ...);
1 ingob 8
 
203 killagreg 9
#endif //_PRINTF_P_H_
1 ingob 10