| 56 | static const char *getASCIISubstitution(uint32_t cp); |
| 57 | |
| 58 | CommodettoFontEngine CFENew(void) |
| 59 | { |
| 60 | BMF bmf = c_calloc(1, sizeof(BMFRecord)); |
| 61 | if (!bmf) |
| 62 | return NULL; |
| 63 | |
| 64 | return bmf; |
| 65 | } |
| 66 | |
| 67 | void CFEDispose(CommodettoFontEngine bmf) |
| 68 | { |
no outgoing calls
no test coverage detected