| 562 | } |
| 563 | |
| 564 | void gethardstring(void) { |
| 565 | int a=0; |
| 566 | skipspaces(); |
| 567 | while(script[pc]!=0 && script[pc]!=' ' && script[pc]!='\t' && |
| 568 | script[pc]!='\n') { |
| 569 | string[a++]=script[pc++]; |
| 570 | } |
| 571 | string[a]=0; |
| 572 | } |
| 573 | |
| 574 | /* Parse a string from script[pc] */ |
| 575 | void getstring(void) { |