| 1977 | // motion vector quantities from draw strings, e.g. the "12" in "U12". |
| 1978 | |
| 1979 | int NFromPch(CONST char **ppch) |
| 1980 | { |
| 1981 | int n = 0, ich = 0; |
| 1982 | |
| 1983 | loop { |
| 1984 | if (!FNumCh(**ppch)) |
| 1985 | return n > 0 ? n : (ich < 1 ? 1 : 0); |
| 1986 | n = n*10 + (**ppch)-'0'; |
| 1987 | (*ppch)++; |
| 1988 | ich++; |
| 1989 | } |
| 1990 | } |
| 1991 | |
| 1992 |
no outgoing calls
no test coverage detected