| * The special functions in the file are numbered according to the section |
| * of the iso 9660 standard in which they are described. isonum_733 will |
| * convert numbers according to section 7.3.3, etc. |
| * isofs special functions. This file was lifted in its entirety from |
| * the 386BSD iso9660 filesystem, by Pace Willisson <pace@blitz.com>. |
| return ((p[0] & 0xff) | ((p[1] & 0xff) << 8)); |
| return (((p[0] & 0xff) << 8) | (p[1] & 0xff)); |
| if (p[0] != p[3] || p[1] != p[2]) { |
| fprintf (stderr, "invalid format 7.2.3 number\n"); |
| | ((p[3] & 0xff) << 24)); |
| return (((p[0] & 0xff) << 24) |
| for (i = 0; i < 4; i++) { |
| fprintf (stderr, "bad format 7.3.3 number\n"); |