sairate c9f8710d03 sairate<sairate@sina.cn>
Signed-off-by: sairate <sairate@sina.cn>
2025-07-12 16:05:52 +08:00

20 lines
299 B
C

/*
* header file for the library Play
*/
#ifdef __BCPLUSPLUS__
extern "C" void StartGame (void) ;
extern "C" void MyMove (char) ;
extern "C" void YourMove (char *) ;
#else
extern void StartGame (void) ;
extern void MyMove (char) ;
extern void YourMove (char *) ;
#endif