Subversion Repositories MK3Mag

Compare Revisions

Ignore whitespace Rev 74 → Rev 75

/tags/V0.23a/printf_P.h
0,0 → 1,11
#ifndef _PRINTF_P_H_
#define _PRINTF_P_H_
 
#include <avr/pgmspace.h>
 
// function pointer to external callback put character function
typedef void (*pVoidFnctChar) (char );
 
void _printf_P (pVoidFnctChar pPutchar, char const *fmt0, ...);
 
#endif //_PRINTF_P_H_