MORSE.H
上传用户:sunrenlu
上传日期:2022-06-13
资源大小:1419k
文件大小:0k
源码类别:

操作系统开发

开发平台:

DOS

  1. #define MAXCODELEN 24
  2. #define DELAY 120
  3. typedef struct {
  4.     char    m_ch;
  5.     BYTE    m_code[ MAXCODELEN ];
  6. } morse_type;
  7. morse_type* ascii_to_morse( char ch );
  8. morse_type* codes_to_morse( BYTE *b, int len );