2.57 More show Procedures
โ
void show_short(short x) {
show_bytes((byte_pointer) &x, sizeof(short));
}
void show_long(long x) {
show_bytes((byte_pointer) &x, sizeof(long));
}
void show_pointer(double x) {
show_bytes((byte_pointer) &x, sizeof(double));
}Last updated