comparison Wnn/jlib/js.c @ 5:338478efe78d

some cleanups
author Yoshiki Yazawa <yaz@cc.rim.or.jp>
date Thu, 13 Dec 2007 22:24:18 +0900
parents 790205f476c0
children 1f16ab4b33e5
comparison
equal deleted inserted replaced
3:ed4bb01eb317 5:338478efe78d
644 /** サーバへ文字列を送る **/ 644 /** サーバへ文字列を送る **/
645 static void 645 static void
646 getscom (p) 646 getscom (p)
647 register char *p; 647 register char *p;
648 { 648 {
649 while (*p++ = get1com ()) 649 while ((*p++ = get1com ()))
650 ; 650 ;
651 } 651 }
652 652
653 /** サーバへ文字列を送る **/ 653 /** サーバへ文字列を送る **/
654 static void 654 static void
655 getwscom (p) 655 getwscom (p)
656 w_char register *p; 656 w_char register *p;
657 { 657 {
658 while (*p++ = get2com ()) 658 while ((*p++ = get2com ()))
659 ; 659 ;
660 } 660 }
661 661
662 #ifdef nodef 662 #ifdef nodef
663 /* Moved from ../etc/string.c */ 663 /* Moved from ../etc/string.c */