14 lines
153 B
C
14 lines
153 B
C
|
/*
|
||
|
* print.h
|
||
|
*
|
||
|
* Created on: May 22, 2012
|
||
|
* Author: tkl
|
||
|
*/
|
||
|
|
||
|
#ifndef PRINT_H_
|
||
|
#define PRINT_H_
|
||
|
|
||
|
void PrintChar(char c);
|
||
|
|
||
|
#endif /* PRINT_H_ */
|