void convert_string(char *udn, int *rbuf) { unsigned int name_length; unsigned int cnt; name_length=( (rbuf[0]&0x00FF)>>1 ); if(name_length>32) {name_length=32;} if(name_length>0) { cnt=0; while(cnt<(name_length-1)) { sprintf(udn+cnt,"%c",*(rbuf+cnt+1)); cnt++; } } } void array_app(int *cbuf,int *tbuf,int no_of_words) { int cnt=0; do { *(cbuf + cnt) = *(tbuf + cnt); cnt++; } while(cnt