figure out what type of monster a user-supplied string is specifying; ignore anything past the monster name */
| 880 | /* figure out what type of monster a user-supplied string is specifying; |
| 881 | ignore anything past the monster name */ |
| 882 | int |
| 883 | name_to_mon(const char *in_str, int *gender_name_var) |
| 884 | { |
| 885 | return name_to_monplus(in_str, (const char **) 0, gender_name_var); |
| 886 | } |
| 887 | |
| 888 | /* figure out what type of monster a user-supplied string is specifying; |
| 889 | return a pointer to whatever is past the monster name--necessary if |
no test coverage detected