| 912 | //========================================================================== |
| 913 | |
| 914 | int FScanner::MustMatchString (const char * const *strings, size_t stride) |
| 915 | { |
| 916 | int i; |
| 917 | |
| 918 | i = MatchString (strings, stride); |
| 919 | if (i == -1) |
| 920 | { |
| 921 | ScriptError ("Unknown keyword '%s'", String); |
| 922 | } |
| 923 | return i; |
| 924 | } |
| 925 | |
| 926 | //========================================================================== |
| 927 | // |
no test coverage detected