isonum_722 and isonum_732 are now back in iso.h

This commit is contained in:
cgd 1997-01-24 00:53:40 +00:00
parent 40a9eb327d
commit 192e22f5b7
1 changed files with 1 additions and 16 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: cd9660.c,v 1.2 1997/01/24 00:29:19 cgd Exp $ */
/* $NetBSD: cd9660.c,v 1.3 1997/01/24 00:53:40 cgd Exp $ */
/*
* Copyright (C) 1996 Wolfgang Solfrank.
@ -44,21 +44,6 @@
#include "stand.h"
#include "cd9660.h"
/* These once were in iso.h, but got deleted??? */
extern __inline int
isonum_722(p)
unsigned char *p;
{
return ((char)*p << 8)|p[1];
}
extern __inline int
isonum_732(p)
unsigned char *p;
{
return (*p << 24)|(p[1] << 16)|(p[2] << 8)|p[3];
}
struct file {
off_t off; /* Current offset within file */
daddr_t bno; /* Starting block number */