| 221 | } |
| 222 | |
| 223 | inline FONTFILE2 OPEN_FONT2(const char *filename) { |
| 224 | FONTFILE2 fp; |
| 225 | |
| 226 | fp = (FONTFILE2)fopen(filename, "wb"); |
| 227 | if (!fp) |
| 228 | return nullptr; |
| 229 | |
| 230 | return fp; |
| 231 | } |
| 232 | |
| 233 | inline void CLOSE_FONT2(FONTFILE2 ffile) { fclose((FILE *)ffile); } |
| 234 |
no outgoing calls
no test coverage detected