Returns "true" for characters that could represent a monster's stomach. */
| 65 | |
| 66 | /* Returns "true" for characters that could represent a monster's stomach. */ |
| 67 | staticfn boolean |
| 68 | is_swallow_sym(int c) |
| 69 | { |
| 70 | int i; |
| 71 | |
| 72 | for (i = S_sw_tl; i <= S_sw_br; i++) |
| 73 | if ((int) gs.showsyms[i] == c) |
| 74 | return TRUE; |
| 75 | return FALSE; |
| 76 | } |
| 77 | |
| 78 | /* Append " or "+new_str to the end of buf if new_str doesn't already exist |
| 79 | as a substring of buf. Return 1 if the string was appended, 0 otherwise. |
no outgoing calls
no test coverage detected