| 892 | } |
| 893 | |
| 894 | cStringsSingle *cStringPackageSingle::FindString(char *ReferenceLookup) |
| 895 | { |
| 896 | int index; |
| 897 | |
| 898 | index = FindStringID(ReferenceLookup); |
| 899 | if (index == -1) |
| 900 | { |
| 901 | return NULL; |
| 902 | } |
| 903 | |
| 904 | return FindString(index & SP_STRING); |
| 905 | } |
| 906 | |
| 907 | int cStringPackageSingle::FindStringID(const char *ReferenceLookup) |
| 908 | { |
no outgoing calls
no test coverage detected