| 3282 | } |
| 3283 | |
| 3284 | BOOL StoreStatOk(ItemStruct *h) |
| 3285 | { |
| 3286 | BOOL sf; |
| 3287 | |
| 3288 | sf = TRUE; |
| 3289 | if (plr[myplr]._pStrength < h->_iMinStr) |
| 3290 | sf = FALSE; |
| 3291 | if (plr[myplr]._pMagic < h->_iMinMag) |
| 3292 | sf = FALSE; |
| 3293 | if (plr[myplr]._pDexterity < h->_iMinDex) |
| 3294 | sf = FALSE; |
| 3295 | |
| 3296 | return sf; |
| 3297 | } |
| 3298 | |
| 3299 | BOOL SmithItemOk(int i) |
| 3300 | { |
no outgoing calls
no test coverage detected