| 1215 | add_byte(word >> 8); |
| 1216 | } |
| 1217 | inline void add_long(const long lg) |
| 1218 | { |
| 1219 | add_word(lg); |
| 1220 | add_word(lg >> 16); |
| 1221 | } |
| 1222 | inline void add_cstring(const char* string) |
| 1223 | { |
| 1224 | add_byte(static_cast<int>(strlen(string))); |
nothing calls this directly
no test coverage detected