Subversion Repositories NaviCtrl

Rev

Rev 41 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 41 Rev 203
Line 1... Line 1...
1
#ifndef _PRINTF_P_H_
1
#ifndef _PRINTF_P_H_
2
#define _PRINTF_P_H_
2
#define _PRINTF_P_H_
Line -... Line 3...
-
 
3
 
-
 
4
// function pointer to external callback put character function
Line -... Line 5...
-
 
5
typedef void (*pVoidFnctChar) (char );
Line 3... Line 6...
3
 
6
 
Line 4... Line -...
4
 
-
 
5
 
-
 
6
void _printf_P (char const *fmt0, ...);
-
 
7
 
-
 
8
 
-
 
9
#define printf_P(format, args...)   _printf_P(format , ## args)
-