Lines Matching defs:file_short
102 unsigned char file_short[2];
104 file_short[0] = (s & (unsigned)0xff00) >> 8;
105 file_short[1] = s & 0xff;
106 if (fwrite (file_short, sizeof (file_short), 1, file) != 1)
148 unsigned char file_short[2];
150 if (fread (file_short, sizeof (file_short), 1, file) != 1)
152 *shortp = file_short[0] * 256 + file_short[1];