C51 COMPILER V7.06 CHEEYU 08/02/2005 13:29:59 PAGE 1 C51 COMPILER V7.06, COMPILATION OF MODULE CHEEYU OBJECT MODULE PLACED IN CHEEYU.OBJ COMPILER INVOKED BY: d:\Keil777\C51\BIN\C51.EXE CHEEYU.C BROWSE DEBUG OBJECTEXTEND stmt level source 1 #include *** WARNING C318 IN LINE 1 OF CHEEYU.C: can't open file 'bios.h' 2 #include *** WARNING C318 IN LINE 2 OF CHEEYU.C: can't open file 'dos.h' 3 4 void convert_string(char *udn, int *rbuf) 5 { 6 1 unsigned int name_length; 7 1 unsigned int cnt; 8 1 9 1 name_length=( (rbuf[0]&0x00FF)>>1 ); 10 1 if(name_length>32) {name_length=32;} 11 1 12 1 if(name_length>0) 13 1 { 14 2 cnt=0; 15 2 while(cnt<(name_length-1)) 16 2 { 17 3 sprintf(udn+cnt,"%c",*(rbuf+cnt+1)); *** WARNING C206 IN LINE 17 OF CHEEYU.C: 'sprintf': missing function-prototype *** ERROR C267 IN LINE 17 OF CHEEYU.C: 'sprintf': requires ANSI-style prototype 18 3 cnt++; 19 3 } 20 2 } 21 1 } 22 23 void array_app(int *cbuf,int *tbuf,int no_of_words) 24 { 25 1 int cnt=0; 26 1 27 1 do 28 1 { 29 2 *(cbuf + cnt) = *(tbuf + cnt); 30 2 cnt++; 31 2 } 32 1 while(cnt