12 lines
227 B
C
12 lines
227 B
C
|
#ifndef _BANNER_H_
|
||
|
#define _BANNER_H_
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif //__cplusplus
|
||
|
extern void banchr (const char c);
|
||
|
extern void cputs (const char * s);
|
||
|
#ifdef __cplusplus
|
||
|
};
|
||
|
#endif //__cplusplus
|
||
|
#endif // _BANNER_H_
|