| 66 | } |
| 67 | |
| 68 | static inline size_t write_le16(uint16_t val, FILE *fd) { |
| 69 | uint16_t to_write = to_le16(val); |
| 70 | return fwrite(&to_write, sizeof to_write, 1, fd); |
| 71 | } |
| 72 | |
| 73 | int emu_receive_variable(const char *file, const calc_var_t *vars, int count) { |
| 74 | static const char header[] = "**TI83F*\x1A\x0A\0Exported via CEmu "; |
no outgoing calls
no test coverage detected