| 76 | } |
| 77 | |
| 78 | s32 __CARDIsReadable(CARDControl* card, CARDDir* entry) |
| 79 | { |
| 80 | s32 result = __CARDIsWritable(card, entry); |
| 81 | |
| 82 | if (result == CARD_RESULT_NOPERM && (entry->permission & 0x4)) { |
| 83 | return CARD_RESULT_READY; |
| 84 | } |
| 85 | |
| 86 | return result; |
| 87 | } |
| 88 | |
| 89 | s32 __CARDGetFileNo(CARDControl *card, const char *fileName, s32 *pfileNo) |
| 90 | { |
no test coverage detected