| 769 | in_column up-to-date. Return first non-blank character. */ |
| 770 | |
| 771 | static int |
| 772 | get_space (FILE *f, int c) |
| 773 | { |
| 774 | while (true) |
| 775 | { |
| 776 | if (c == ' ') |
| 777 | in_column++; |
| 778 | else if (c == '\t') |
| 779 | { |
| 780 | tabs = true; |
| 781 | in_column = (in_column / TABWIDTH + 1) * TABWIDTH; |
| 782 | } |
| 783 | else |
| 784 | return c; |
| 785 | c = getc (f); |
| 786 | } |
| 787 | } |
| 788 | |
| 789 | /* Set extra fields in word W describing any attached punctuation. */ |
| 790 |
no outgoing calls
no test coverage detected